summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_result.c
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-11-30 10:56:01 +0000
committerPierre Joye <pajoye@php.net>2009-11-30 10:56:01 +0000
commit80e5ef6fa59507b6733ed6a5b132c21e64158d06 (patch)
treeda88eb2315ad4e0d2c9286b6a6d07211da1232cc /ext/mysqlnd/mysqlnd_result.c
parent5c18a8b6c51bbc50497c3106460407f23cb1b063 (diff)
downloadphp-git-80e5ef6fa59507b6733ed6a5b132c21e64158d06.tar.gz
- void is NaN, you can't do math ops on void. Declarations go first. Fix TS build
Diffstat (limited to 'ext/mysqlnd/mysqlnd_result.c')
-rw-r--r--ext/mysqlnd/mysqlnd_result.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqlnd/mysqlnd_result.c b/ext/mysqlnd/mysqlnd_result.c
index 82b396c674..a1877e38cb 100644
--- a/ext/mysqlnd/mysqlnd_result.c
+++ b/ext/mysqlnd/mysqlnd_result.c
@@ -2073,7 +2073,7 @@ PHPAPI void ** _mysqlnd_plugin_get_plugin_result_data(const MYSQLND_RES * result
if (!result || plugin_id >= mysqlnd_plugin_count()) {
return NULL;
}
- DBG_RETURN((void *)result + sizeof(MYSQLND_RES) + plugin_id * sizeof(void *));
+ DBG_RETURN((void *)(result + sizeof(MYSQLND_RES) + plugin_id * sizeof(void *)));
}
/* }}} */