TTimo / GtkRadiant

The open source, cross platform level editor for idtech games
http://icculus.org/gtkradiant/
Other
586 stars 155 forks source link

Fix uninitialized use of ext warning #471

Closed Pan7 closed 7 years ago

Pan7 commented 7 years ago

tools/quake3/q3map2/shaders.c:1233:10: warning: variable 'ext' is used uninitialized whenever 'if' condition is false [-Wsometimes-uninitialized] if ( !Q_stricmp( token, "q3map_sunext" ) ) { ^~~~~~~~~~~ tools/quake3/q3map2/shaders.c:1276:10: note: uninitialized use occurs here if ( ext && TokenAvailable() ) { ^~~ ext needs to be initialized. See https://github.com/TTimo/GtkRadiant/issues/467