diff options
author | Jeroen van Wolffelaar <jeroen@php.net> | 2001-09-26 08:51:53 +0000 |
---|---|---|
committer | Jeroen van Wolffelaar <jeroen@php.net> | 2001-09-26 08:51:53 +0000 |
commit | 6693d112d2cda389461e4cbf0b50f43db7248a3a (patch) | |
tree | b30e70791f3fc16e3822fa368b067517f7d508ed /ext/sybase | |
parent | 8ec9e5bca0c835a01d5bb0411aa9c8d700aa541e (diff) | |
download | php-git-6693d112d2cda389461e4cbf0b50f43db7248a3a.tar.gz |
Fix the fix
Diffstat (limited to 'ext/sybase')
-rw-r--r-- | ext/sybase/php_sybase_db.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sybase/php_sybase_db.c b/ext/sybase/php_sybase_db.c index 78d80f0cde..266c41b532 100644 --- a/ext/sybase/php_sybase_db.c +++ b/ext/sybase/php_sybase_db.c @@ -1286,7 +1286,7 @@ PHP_FUNCTION(sybase_result) break; } - *return_value = *Z_LVAL_P(result->data[row][field_offset]); + *return_value = *result->data[Z_LVAL_P(row)][field_offset]; pval_copy_constructor(return_value); } /* }}} */ |