Address warning: variable might be clobbered by 'longjmp' or 'vfork' [-Wclobbered]

git-svn-id: https://svn.eduke32.com/eduke32@5866 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2016-09-16 21:55:33 +00:00
parent 278eb6ded8
commit 63030036ba

View file

@ -58,11 +58,11 @@ static int32_t screencapture_png(const char *filename, char inverseit, const cha
# endif
png_structp png_ptr;
png_infop info_ptr;
png_colorp palette = NULL;
png_textp text = NULL;
png_colorp volatile palette = NULL;
png_textp volatile text = NULL;
png_bytep buf = NULL;
png_bytepp rowptrs = NULL;
png_bytep volatile buf = NULL;
png_bytepp volatile rowptrs = NULL;
char fn[32]; // careful...