|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-10-18 13:28 UTC] johannes@php.net
[2007-10-18 13:38 UTC] scottmac@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 27 08:00:01 2025 UTC |
Description: ------------ Two compile failures: mysql_get_client_version: brackets were omitted in function call. Code should (probably) be: PHP_MSHUTDOWN_FUNCTION(mysql) { #ifdef PHP_WIN32 unsigned long client_ver = mysql_get_client_version(); /* Can't call mysql_server_end() multiple times prior to 5.0.42 on Windows */ if ((client_ver > 50042 && client_ver < 50100) || client_ver > 50122) { mysql_server_end(); } #else mysql_server_end(); #endif UNREGISTER_INI_ENTRIES(); return SUCCESS; }