From 22b608696ffab0b8f219559f3cfa2d493683af37 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Wed, 26 May 2010 13:47:51 +0000 Subject: [PATCH] Patch by sil2100: Fix uninitialized variable, probably causing #6074. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36940 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/apps/packageinstaller/PackageInstall.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/apps/packageinstaller/PackageInstall.cpp b/src/apps/packageinstaller/PackageInstall.cpp index 78a261b290..2b71fe04cd 100644 --- a/src/apps/packageinstaller/PackageInstall.cpp +++ b/src/apps/packageinstaller/PackageInstall.cpp @@ -38,7 +38,8 @@ install_function(void *data) PackageInstall::PackageInstall(PackageView *parent) : fParent(parent), - fThreadId(-1) + fThreadId(-1), + fCurrentScript(NULL) { }