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

Make libib_util usable with old server versions

This commit is contained in:
alexpeshkoff 2009-12-16 13:11:08 +00:00
parent 9dcd0c64f1
commit 055b77fecc

View File

@ -36,5 +36,5 @@ extern "C" void FB_DLL_EXPORT ib_util_init(void* (*aAllocFunc)(long))
extern "C" VoidPtr FB_DLL_EXPORT ib_util_malloc(long size)
{
return allocFunc ? allocFunc(size) : NULL;
return allocFunc ? allocFunc(size) : malloc(size);
}