Fluorohydride / ygopro

A script engine for "yu-gi-oh!" and sample gui
GNU General Public License v2.0
1.85k stars 596 forks source link

fix warning -Wformat-truncation #2613

Closed salix5 closed 1 week ago

salix5 commented 2 weeks ago

https://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Warning-Options.html -Wformat-truncation -Wformat-truncation=level

Warn about calls to formatted input/output functions such as snprintf and vsnprintf that might result in output truncation. When the exact number of bytes written by a format directive cannot be determined at compile-time it is estimated based on heuristics that depend on the level argument and on optimization. While enabling optimization will in most cases improve the accuracy of the warning, it may also result in false positives. Except as noted otherwise, the option uses the same logic -Wformat-overflow.

snprintf 的返回值會顯示字串是否因為長度不足而被截斷 如果沒有檢查返回值就可能跳出這個警告 對於路徑而言,如果是被截斷的字串就應該停止行動

@mercury233 @purerosefallen @Wind2009-Louse