8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 00:03:03 +01:00

Correction

This commit is contained in:
asfernandes 2006-04-07 02:55:34 +00:00
parent fa2038bce6
commit 2b5eef3103

View File

@ -4391,7 +4391,7 @@ ISC_STATUS rem_port::send_response( PACKET* sendL,
*v++ = *status_vector++; *v++ = *status_vector++;
continue; continue;
} }
const int l = p < bufferEnd ? fb_interpret(p, bufferEnd - p, &status_vector) : 0; const int l = (p < bufferEnd) ? fb_interpret(p, bufferEnd - p, &status_vector) : 0;
if (l == 0) if (l == 0)
break; break;
@ -5142,7 +5142,7 @@ static bool bad_port_context(ISC_STATUS* status_vector,
return false; return false;
} }
status_vector[0] = isc_arg_gds; status_vector[0] = isc_arg_gds;
status_vector[1] = isc_bad_svc_handle; status_vector[1] = error;
status_vector[2] = isc_arg_end; status_vector[2] = isc_arg_end;
return true; return true;
} }