Index: trunk/php/wmerrors/wmerrors.c |
— | — | @@ -63,7 +63,6 @@ |
64 | 64 | wmerrors_globals->message_file = NULL; |
65 | 65 | wmerrors_globals->logging_file = NULL; |
66 | 66 | wmerrors_globals->log_level = 0; |
67 | | - wmerrors_globals->log_buffer.c = NULL; |
68 | 67 | } |
69 | 68 | |
70 | 69 | PHP_MINIT_FUNCTION(wmerrors) |
— | — | @@ -88,6 +87,7 @@ |
89 | 88 | PHP_RINIT_FUNCTION(wmerrors) |
90 | 89 | { |
91 | 90 | WMERRORS_G(recursion_guard) = 0; |
| 91 | + WMERRORS_G(log_buffer).c = NULL; |
92 | 92 | return SUCCESS; |
93 | 93 | } |
94 | 94 | |