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

  • From: leavengood@xxxxxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 29 Dec 2010 06:58:39 +0100 (CET)

Author: leavengood
Date: 2010-12-29 06:58:39 +0100 (Wed, 29 Dec 2010)
New Revision: 40013
Changeset: http://dev.haiku-os.org/changeset/40013

Modified:
   haiku/trunk/src/apps/packageinstaller/InstalledPackageInfo.cpp
Log:
CID 9916 and 9917: initialize fSpaceNeeded.


Modified: haiku/trunk/src/apps/packageinstaller/InstalledPackageInfo.cpp
===================================================================
--- haiku/trunk/src/apps/packageinstaller/InstalledPackageInfo.cpp      
2010-12-29 05:34:50 UTC (rev 40012)
+++ haiku/trunk/src/apps/packageinstaller/InstalledPackageInfo.cpp      
2010-12-29 05:58:39 UTC (rev 40013)
@@ -72,6 +72,7 @@
        fStatus(B_NO_INIT),
        fIsUpToDate(false),
        fCreate(false),
+       fSpaceNeeded(0),
        fInstalledItems(10)
 {
 }
@@ -82,6 +83,7 @@
        :
        fStatus(B_NO_INIT),
        fIsUpToDate(false),
+       fSpaceNeeded(0),
        fInstalledItems(10)
 {
        SetTo(packageName, version, create);


Other related posts:

  • » [haiku-commits] r40013 - haiku/trunk/src/apps/packageinstaller - leavengood