Fix use of uninitialized variable

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@3956 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
haydentech
2003-07-11 22:08:17 +00:00
parent 50f17542c2
commit 36535a1728
+2 -1
View File
@@ -773,7 +773,8 @@ BHandler* BLooper::ResolveSpecifier(BMessage* msg, int32 index,
//------------------------------------------------------------------------------
status_t BLooper::GetSupportedSuites(BMessage* data)
{
status_t err;
status_t err = B_OK;
if (!data)
{
err = B_BAD_VALUE;