Skip to content

Commit 697e500

Browse files
committed
php_memcached.c:3317:11: warning: 'buffer' may be used uninitialized in this function (just to make gcc happy)
1 parent c616a1b commit 697e500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php_memcached.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3286,7 +3286,7 @@ char *php_memc_zval_to_payload(zval *value, size_t *payload_len, uint32_t *flags
32863286
static
32873287
char *s_decompress_value (const char *payload, size_t *payload_len, uint32_t flags TSRMLS_DC)
32883288
{
3289-
char *buffer;
3289+
char *buffer = NULL;
32903290
uint32_t len;
32913291
unsigned long length;
32923292
zend_bool decompress_status = 0;

0 commit comments

Comments
 (0)