correct compile error in php70

pull/37/head
yuqing 2017-02-08 10:30:56 +08:00
parent 33fc9e1569
commit 4a68ca603f
1 changed files with 4 additions and 4 deletions

View File

@ -928,7 +928,7 @@ static LogContext *get_logger_context(const char *filename, const int time_preci
#define FASTCOMMON_ALLOCA_FREE(s) \ #define FASTCOMMON_ALLOCA_FREE(s) \
do { \ do { \
if (s != NULL) { \ if (sz_##s != NULL) { \
ZSTR_ALLOCA_FREE(sz_##s, use_heap_##s); \ ZSTR_ALLOCA_FREE(sz_##s, use_heap_##s); \
} \ } \
} while (0) } while (0)
@ -1002,9 +1002,9 @@ ZEND_FUNCTION(fastcommon_error_log)
zval zfilename; zval zfilename;
zval zheaders; zval zheaders;
#if PHP_MAJOR_VERSION >= 7 #if PHP_MAJOR_VERSION >= 7
zend_string *sz_message; zend_string *sz_message = NULL;
zend_string *sz_filename; zend_string *sz_filename = NULL;
zend_string *sz_headers; zend_string *sz_headers = NULL;
bool use_heap_message = false; bool use_heap_message = false;
bool use_heap_filename = false; bool use_heap_filename = false;
bool use_heap_headers = false; bool use_heap_headers = false;