diff options
author | Felipe Pena <felipe@php.net> | 2008-06-13 13:06:46 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-06-13 13:06:46 +0000 |
commit | d61f32d0214728b0cb74cfd7d75cf2b4b6516549 (patch) | |
tree | bb7c2fef9a3b61b9ce398b68784eaf6bcf1db05b /ext/phar/util.c | |
parent | 9c8d13fd6cdb95a9972c7498a1ce598c6626aac9 (diff) | |
download | php-git-d61f32d0214728b0cb74cfd7d75cf2b4b6516549.tar.gz |
- Fix build (ZTS)
Diffstat (limited to 'ext/phar/util.c')
-rw-r--r-- | ext/phar/util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/phar/util.c b/ext/phar/util.c index 70f87bf14c..b811906ef4 100644 --- a/ext/phar/util.c +++ b/ext/phar/util.c @@ -1344,6 +1344,8 @@ static int phar_hex_str(const char *digest, size_t digest_len, char ** signature { int pos = -1; size_t len = 0; + + TSRMLS_FETCH(); *signature = (char*)safe_pemalloc(digest_len, 2, 1, PHAR_G(persist)); |