summaryrefslogtreecommitdiff
path: root/ext/mssql/php_mssql.h
diff options
context:
space:
mode:
authorFrank M. Kromann <fmk@php.net>2005-08-08 21:32:18 +0000
committerFrank M. Kromann <fmk@php.net>2005-08-08 21:32:18 +0000
commit030542c23889ef0b549010ba4c1b75cc330e449f (patch)
tree5aff6ae32f87dfa33744597c953f5a13c13bce58 /ext/mssql/php_mssql.h
parent2e4d679629d3fc103602fbf634b0689ee1033e08 (diff)
downloadphp-git-030542c23889ef0b549010ba4c1b75cc330e449f.tar.gz
Fix #32010. Leak in mssql_fetch_batch().
Diffstat (limited to 'ext/mssql/php_mssql.h')
-rw-r--r--ext/mssql/php_mssql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mssql/php_mssql.h b/ext/mssql/php_mssql.h
index c81595b50e..b2ead409b8 100644
--- a/ext/mssql/php_mssql.h
+++ b/ext/mssql/php_mssql.h
@@ -188,7 +188,7 @@ typedef struct mssql_result {
int lastresult;
int blocks_initialized;
int cur_row,cur_field;
- int num_rows,num_fields;
+ int num_rows,num_fields,have_fields;
} mssql_result;