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

Fixed "passing NULL used for non-pointer argument" and "return to non-pointer

type `SLONG' from NULL".
This commit is contained in:
eku 2003-02-18 06:39:26 +00:00
parent cf8aa67d7e
commit 0ee7c15f19

View File

@ -29,7 +29,7 @@
*
*/
/*
$Id: lock.cpp,v 1.32 2003-02-14 14:23:43 eku Exp $
$Id: lock.cpp,v 1.33 2003-02-18 06:39:26 eku Exp $
*/
#include "firebird.h"
@ -582,7 +582,7 @@ SLONG LOCK_enq( PTR prior_request,
}
owner = (OWN) ABS_PTR(owner_offset); /* Re-init after a potential remap */
post_history(his_enq, owner_offset, NULL, REL_PTR(request), TRUE);
post_history(his_enq, owner_offset, (PTR)0, REL_PTR(request), TRUE);
request->lrq_type = type_lrq;
request->lrq_flags = 0;
@ -2995,7 +2995,7 @@ static PTR grant_or_que( LRQ request, LBL lock, SSHORT lck_wait)
release_request(request);
release(owner_offset);
return NULL;
return (PTR)0;
}