CID 3037: missing return after deleting itself.
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40276 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
717d3ee213
commit
f72663929e
@ -59,6 +59,7 @@ GenericThread::ThreadFunction()
|
||||
}
|
||||
|
||||
delete this;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
BeginUnit();
|
||||
|
@ -52,6 +52,7 @@ GenericThread::ThreadFunction(void)
|
||||
}
|
||||
|
||||
delete this; // destructor
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
BeginUnit();
|
||||
|
Loading…
Reference in New Issue
Block a user