Skip to content

Commit

Permalink
Fixed bug CORE-2523 : gfix reports "unknown ISC error 0" in some cases
Browse files Browse the repository at this point in the history
  • Loading branch information
hvlad committed Jun 24, 2009
1 parent a0e27db commit 1c89ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alice/alice.cpp
Expand Up @@ -603,7 +603,7 @@ void ALICE_print(USHORT number,

void ALICE_print_status(const ISC_STATUS* status_vector)
{
if (status_vector)
if (status_vector && status_vector[1])
{
const ISC_STATUS* vector = status_vector;
AliceGlobals* tdgbl = AliceGlobals::getSpecific();
Expand Down

0 comments on commit 1c89ab9

Please sign in to comment.