[haiku-commits] r36940 - haiku/trunk/src/apps/packageinstaller

  • From: superstippi@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 26 May 2010 15:47:51 +0200 (CEST)

Author: stippi
Date: 2010-05-26 15:47:51 +0200 (Wed, 26 May 2010)
New Revision: 36940
Changeset: http://dev.haiku-os.org/changeset/36940/haiku
Ticket: http://dev.haiku-os.org/ticket/6074

Modified:
   haiku/trunk/src/apps/packageinstaller/PackageInstall.cpp
Log:
Patch by sil2100: Fix uninitialized variable, probably causing #6074.


Modified: haiku/trunk/src/apps/packageinstaller/PackageInstall.cpp
===================================================================
--- haiku/trunk/src/apps/packageinstaller/PackageInstall.cpp    2010-05-26 
01:27:50 UTC (rev 36939)
+++ haiku/trunk/src/apps/packageinstaller/PackageInstall.cpp    2010-05-26 
13:47:51 UTC (rev 36940)
@@ -38,7 +38,8 @@
 
 PackageInstall::PackageInstall(PackageView *parent)
        : fParent(parent),
-       fThreadId(-1)
+       fThreadId(-1),
+       fCurrentScript(NULL)
 {
 }
 


Other related posts:

  • » [haiku-commits] r36940 - haiku/trunk/src/apps/packageinstaller - superstippi