1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +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
View File
@@ -31,6 +31,7 @@ Bug fixes::
* irc: fix duplicated channels in autojoin option when autojoin_dynamic is enabled (issue #1795)
* irc: fix display of TOPIC and QUIT messages with an empty trailing parameter (issue #1797)
* javascript: fix return of long value in functions infolist_time, hdata_long and hdata_time
* php: fix function hdata_compare
* relay: fix parsing of IRC messages received from clients (issue #1796)
* scripts: fix issue with year ≥ 2038 in functions infolist_new_var_time, print_date_tags and print_y_date_tags (plugins: python/lua/tcl/guile/javascript)
* scripts: fix issue with long interval in function hook_timer (plugins: python/ruby/lua/tcl/guile/javascript/php)
+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,