From 87a2104c1a4be4aaacbafe2eab28e9d0296eda5b Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Wed, 19 Jan 2011 17:51:02 +0000 Subject: fix ZTS build --- ext/mysqlnd/mysqlnd_statistics.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'ext/mysqlnd/mysqlnd_statistics.c') diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index 3098a7cfa6..23683bfa87 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -246,7 +246,6 @@ mysqlnd_stats_init(MYSQLND_STATS ** stats, size_t statistic_count) { *stats = calloc(1, sizeof(MYSQLND_STATS)); if (*stats == NULL) { - DBG_ENTER("mysqlnd_stats_init failed to calloc stats context"); return; } (*stats)->values = calloc(statistic_count, sizeof(uint64_t)); @@ -256,7 +255,6 @@ mysqlnd_stats_init(MYSQLND_STATS ** stats, size_t statistic_count) #ifdef ZTS (*stats)->LOCK_access = tsrm_mutex_alloc(); #endif - } /* }}} */ -- cgit v1.2.1