1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 14:26:39 +02:00

php: fix function hdata_compare

This commit is contained in:
Sébastien Helleu
2022-08-02 20:49:35 +02:00
parent bcb8647aa4
commit 53df45de48
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -5279,7 +5279,7 @@ API_FUNC(hdata_compare)
hdata = (struct t_hdata *)API_STR2PTR(ZSTR_VAL(z_hdata));
pointer1 = (void *)API_STR2PTR(ZSTR_VAL(z_pointer1));
pointer2 = (void *)API_STR2PTR(ZSTR_VAL(z_pointer2));
name = (void *)API_STR2PTR(ZSTR_VAL(z_name));
name = ZSTR_VAL(z_name);
case_sensitive = (int)z_case_sensitive;
result = weechat_hdata_compare (hdata, pointer1, pointer2, name,