From c68e24ce1a1b2da6b7c5d697919f7f8d1a50ee4e Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 24 Mar 2009 09:24:35 +0000 Subject: [PATCH] - fix build --- ext/odbc/php_odbc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 95512dd64d..facd218a9f 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -1631,7 +1631,7 @@ static void php_odbc_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type) SQLUSMALLINT RowStatus[1]; SQLLEN rownum; zval *pv_res, *tmp; - long pv_row - 1; + long pv_row = 1; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "r|l", &pv_res, &pv_row) == FAILURE) { return; -- 2.50.1