]> granicus.if.org Git - php/commitdiff
#- Changed sizes of char[] in IFX_RES: connecid, cursorid, descrpid, statemid
authorCorne' Cornelius <nobbie@php.net>
Thu, 20 Feb 2003 11:57:29 +0000 (11:57 +0000)
committerCorne' Cornelius <nobbie@php.net>
Thu, 20 Feb 2003 11:57:29 +0000 (11:57 +0000)
   from 16 to 32 to prevents possible overflow

ext/informix/php_informix_includes.h

index 5e61376ac23ae2e9a971455fbcefbf7274b9046a..456ad57019b27e3b5ad54b7adde81428239c998b 100644 (file)
 
 /* query result set data */
 typedef struct ifx_res {
-       char connecid[16];
-       char cursorid[16];
-       char descrpid[16];
-       char statemid[16];
+       char connecid[32];
+       char cursorid[32];
+       char descrpid[32];
+       char statemid[32];
        int  isscroll;
        int  ishold;
        int  iscursory;