summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_plugin.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2011-02-25 16:44:39 +0000
committerAndrey Hristov <andrey@php.net>2011-02-25 16:44:39 +0000
commit5373a3949c0146ab9ef4435aea159b25c5bff584 (patch)
treeef13d23a1d12d4d67f24b507412a5e91ce82b349 /ext/mysqlnd/mysqlnd_plugin.c
parent59c5875f833386a4ca5170629e5802a3ac1531df (diff)
downloadphp-git-5373a3949c0146ab9ef4435aea159b25c5bff584.tar.gz
fix plugin counting, this is trunk only
Diffstat (limited to 'ext/mysqlnd/mysqlnd_plugin.c')
-rw-r--r--ext/mysqlnd/mysqlnd_plugin.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ext/mysqlnd/mysqlnd_plugin.c b/ext/mysqlnd/mysqlnd_plugin.c
index 97e1bada29..96ba9b68b3 100644
--- a/ext/mysqlnd/mysqlnd_plugin.c
+++ b/ext/mysqlnd/mysqlnd_plugin.c
@@ -148,14 +148,13 @@ PHPAPI unsigned int mysqlnd_plugin_register_ex(struct st_mysqlnd_plugin_header *
if (plugin) {
if (plugin->plugin_api_version == MYSQLND_PLUGIN_API_VERSION) {
zend_hash_update(&mysqlnd_registered_plugins, plugin->plugin_name, strlen(plugin->plugin_name) + 1, &plugin, sizeof(void *), NULL);
- ++mysqlnd_plugins_counter;
+ return mysqlnd_plugins_counter++;
} else {
php_error_docref(NULL TSRMLS_CC, E_WARNING, "Plugin API version mismatch while loading plugin %s. Expected %d, got %d",
plugin->plugin_name, MYSQLND_PLUGIN_API_VERSION, plugin->plugin_api_version);
}
}
- return mysqlnd_plugins_counter;
-
+ return 0xCAFE;
}
/* }}} */