From: Rolf K. <lab...@us...> - 2007-04-02 21:11:54
|
Update of /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcode In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv29005/lvzip.xcode Modified Files: project.pbxproj Log Message: Fix a possible error due to an uninitialized stack variable, when reading a ZIP archive that has no global comment information at all. Index: project.pbxproj =================================================================== RCS file: /cvsroot/opengtoolkit/lvzip/c_source/lvzip.xcode/project.pbxproj,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** project.pbxproj 1 Mar 2006 09:54:13 -0000 1.5 --- project.pbxproj 2 Apr 2007 21:11:48 -0000 1.6 *************** *** 568,571 **** --- 568,572 ---- GCC_GENERATE_DEBUGGING_SYMBOLS = YES; GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = DEBUG; ZERO_LINK = YES; }; *************** *** 694,697 **** --- 695,699 ---- GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES; GCC_WARN_HIDDEN_VIRTUAL_FUNCTIONS = NO; + GCC_WARN_UNINITIALIZED_AUTOS = NO; GCC_WARN_UNKNOWN_PRAGMAS = NO; GCC_WARN_UNUSED_PARAMETER = YES; |