1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

MFB: Fix compile failure on windows

This commit is contained in:
Andrey Hristov
2007-10-23 10:17:39 +00:00
parent d892fd3da4
commit 7b23705ce3
2 changed files with 2 additions and 2 deletions

View File

@@ -2032,7 +2032,7 @@ static PHP_RSHUTDOWN_FUNCTION(mysqlnd)
DBG_ENTER("RSHUTDOWN");
if (dbg) {
dbg->m->close(dbg);
dbg->m->free(dbg);
dbg->m->free_handle(dbg);
MYSQLND_G(dbg) = NULL;
}
#endif

View File

@@ -39,7 +39,7 @@ struct st_mysqlnd_debug_methods
char * func_name, uint func_name_len);
enum_func_status (*func_leave)(MYSQLND_DEBUG *self, unsigned int line, const char * const file);
enum_func_status (*close)(MYSQLND_DEBUG *self);
enum_func_status (*free)(MYSQLND_DEBUG *self);
enum_func_status (*free_handle)(MYSQLND_DEBUG *self);
};
struct st_mysqlnd_debug