From a46f36a56400dd7510ef25794788029537bb2f5f Mon Sep 17 00:00:00 2001 From: Danny Heijl Date: Thu, 9 Nov 2000 19:34:31 +0000 Subject: [PATCH] - fix crash when using blob_in_file mode (danny). --- ext/informix/ifx.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/informix/ifx.ec b/ext/informix/ifx.ec index 79e0ccf15d..ff1ab84237 100644 --- a/ext/informix/ifx.ec +++ b/ext/informix/ifx.ec @@ -3782,7 +3782,7 @@ static char* php3_intifx_create_tmpfile(long bid) { sprintf(filename,"blb%d",(int)bid); blobfile=tempnam(blobdir,filename); - free(blobdir); + /* free(blobdir); */ if (blobfile == NULL) return NULL; -- 2.50.1