diff options
| author | Danny Heijl <danny@php.net> | 2000-11-09 19:34:31 +0000 |
|---|---|---|
| committer | Danny Heijl <danny@php.net> | 2000-11-09 19:34:31 +0000 |
| commit | a46f36a56400dd7510ef25794788029537bb2f5f (patch) | |
| tree | b1e08f0e13377e2b4bdac5ffebe5e2484bc7481b | |
| parent | eaad937f84c8bacaa425a038b4b837686c47c1f5 (diff) | |
| download | php-git-a46f36a56400dd7510ef25794788029537bb2f5f.tar.gz | |
- fix crash when using blob_in_file mode (danny).
| -rw-r--r-- | ext/informix/ifx.ec | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
