From 030542c23889ef0b549010ba4c1b75cc330e449f Mon Sep 17 00:00:00 2001 From: "Frank M. Kromann" Date: Mon, 8 Aug 2005 21:32:18 +0000 Subject: Fix #32010. Leak in mssql_fetch_batch(). --- ext/mssql/php_mssql.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/mssql/php_mssql.h') 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; -- cgit v1.2.1