Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 62fd5a3 + 8bc2240 commit 4ff9bd7Copy full SHA for 4ff9bd7
1 file changed
redis.c
@@ -887,7 +887,8 @@ PHP_MINFO_FUNCTION(redis)
887
smart_str_appends(&names, "zstd");
888
#endif
889
if (names.s) {
890
- php_info_print_table_row(2, "Available compression", names.s->val);
+ smart_str_0(&names);
891
+ php_info_print_table_row(2, "Available compression", ZSTR_VAL(names.s));
892
}
893
smart_str_free(&names);
894
php_info_print_table_end();
0 commit comments