summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorne' Cornelius <nobbie@php.net>2003-02-27 08:59:16 +0000
committerCorne' Cornelius <nobbie@php.net>2003-02-27 08:59:16 +0000
commit5e09029ba7b403ce3770f32d6056d59c675cd001 (patch)
treedf1e6083348eab872faea5d973052154ae655125
parent8a7822cf24ed6f4cce3cd6a09e33e37249180585 (diff)
downloadphp-git-5e09029ba7b403ce3770f32d6056d59c675cd001.tar.gz
- Changed maxmsglen in ifx_errormsg() back to normal 255 instead of 10
-rw-r--r--ext/informix/ifx.ec2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/informix/ifx.ec b/ext/informix/ifx.ec
index 96572d5612..c52d439640 100644
--- a/ext/informix/ifx.ec
+++ b/ext/informix/ifx.ec
@@ -1650,7 +1650,7 @@ PHP_FUNCTION(ifx_errormsg)
break;
}
- maxmsglen = 10;
+ maxmsglen = 255;
msglen = maxmsglen; /* Some bug fix, rgetlmsg doesnt always set the value */
ifx_errmsg = (char *)emalloc(maxmsglen + 1);
if (ifx_errorcode != 0) {