No functional change, avoid confusion in Coverity about exceptions

CID 9248, CID 9250, CID 10844, CID 10977, CID 10978, CID 10979, CID 10980,
CID 10981, CID 10982, CID 10983
This commit is contained in:
Philippe Saint-Pierre 2011-11-27 17:39:51 -05:00
parent ef9c898bba
commit ec9e2f9018

View File

@ -502,10 +502,10 @@ void
ThrowOnInitCheckError(InitCheckable *item)
{
if (!item)
throw B_ERROR;
throw(status_t) B_ERROR;
status_t error = item->InitCheck();
if (error != B_OK)
throw error;
throw(status_t) error;
}
#if DEBUG