From: Ilia Alshanetsky Date: Mon, 12 Mar 2007 23:21:41 +0000 (+0000) Subject: malloc() -> pemalloc() X-Git-Tag: php-5.2.2RC1~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c8293149632234770916739b4551f09143dbcfc4;p=php malloc() -> pemalloc() --- diff --git a/ext/interbase/php_ibase_udf.c b/ext/interbase/php_ibase_udf.c index 2c572202e8..3451200059 100644 --- a/ext/interbase/php_ibase_udf.c +++ b/ext/interbase/php_ibase_udf.c @@ -145,7 +145,7 @@ static void __attribute__((destructor)) fini() void exec_php(BLOBCALLBACK b, PARAMDSC *res, ISC_SHORT *init) { int result, remaining = b->blob_total_length, i = 0; - char *code = malloc(remaining+1); + char *code = pemalloc(remaining+1, 1); ISC_USHORT read; for (code[remaining] = '\0'; remaining > 0; remaining -= read)