Solves png warnings from gcc 11.2.0/Rev2 for issue #296

This commit is contained in:
Greg Ercolano 2021-11-25 09:50:45 -08:00
parent 7b9ddd97c3
commit 2b400f6abc

View File

@ -752,7 +752,7 @@ png_convert_to_rfc1123_buffer(char out[29], png_const_timep ptime)
{
size_t pos = 0;
char number_buf[5]; /* enough for a four-digit year */
char number_buf[5] = ""; /* enough for a four-digit year */ /* FLTK Issue #296 */
# define APPEND_STRING(string) pos = png_safecat(out, 29, pos, (string))
# define APPEND_NUMBER(format, value)\