gozfree / gear-lib

Gear-Lib, C library for IOT Embedded Multimedia and Network
MIT License
2.97k stars 805 forks source link

Fix badly bounded write #93

Closed szsam closed 1 year ago

szsam commented 1 year ago

This 'call to snprintf' operation is limited to 16384 bytes but the destination is only 8192 bytes. Fix by making the buffer bigger and calling snprintf with the correct size argument.