diff options
author | Marcus Boerger <helly@php.net> | 2002-12-05 20:39:43 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2002-12-05 20:39:43 +0000 |
commit | 9a045280611bf70d212093a7535d763ccee7ef9b (patch) | |
tree | 07265df36fec3dea6b2014715f99bdc4c1594873 | |
parent | dcfe98882096ac3dd4c1291870f545bd4c21cdf2 (diff) | |
download | php-git-9a045280611bf70d212093a7535d763ccee7ef9b.tar.gz |
fix ZTS build
-rw-r--r-- | ext/session/mod_mm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/session/mod_mm.c b/ext/session/mod_mm.c index 0853a6b7a8..98f4b7760a 100644 --- a/ext/session/mod_mm.c +++ b/ext/session/mod_mm.c @@ -124,7 +124,7 @@ static ps_sd *ps_sd_new(ps_mm *data, const char *key) sd = mm_malloc(data->mm, sizeof(ps_sd) + keylen); if (!sd) { - TSRMlS_FETCH(); + TSRMLS_FETCH(); php_error_docref(NULL TSRMLS_CC, E_WARNING, "mm_malloc failed, avail %d, err %s", mm_available(data->mm), mm_error()); return NULL; |