[haiku-commits] r33925 - haiku/trunk/src/apps/debugger/debug_info

  • From: anevilyak@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Fri, 6 Nov 2009 23:14:12 +0100 (CET)

Author: anevilyak
Date: 2009-11-06 23:14:11 +0100 (Fri, 06 Nov 2009)
New Revision: 33925
Changeset: http://dev.haiku-os.org/changeset/33925/haiku

Modified:
   haiku/trunk/src/apps/debugger/debug_info/DwarfTypeFactory.cpp
Log:
Fix gcc4 build.



Modified: haiku/trunk/src/apps/debugger/debug_info/DwarfTypeFactory.cpp
===================================================================
--- haiku/trunk/src/apps/debugger/debug_info/DwarfTypeFactory.cpp       
2009-11-06 18:29:27 UTC (rev 33924)
+++ haiku/trunk/src/apps/debugger/debug_info/DwarfTypeFactory.cpp       
2009-11-06 22:14:11 UTC (rev 33925)
@@ -1031,7 +1031,7 @@
        }
 
        // create the base type
-       Type* baseType;
+       Type* baseType = NULL;
        status_t error;
        if (baseTypeEntry != NULL) {
                DwarfType* dwarfBaseType;


Other related posts:

  • » [haiku-commits] r33925 - haiku/trunk/src/apps/debugger/debug_info - anevilyak