mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-16 01:11:28 +00:00
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:
parent
278eb6ded8
commit
63030036ba
1 changed files with 4 additions and 4 deletions
|
@ -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...
|
||||
|
||||
|
|
Loading…
Reference in a new issue