Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
string_dyn_concat
|
|
It's faster to use a string with dynamic size, rather than looping on the whole
nicklist to compute the length of result string, before looping again to build
the string.
|
|
This removes scan-build warnings about dereference of last_xxx null pointers.
|
|
|
|
|
|
secure_search_cipher (issue #1012)
|
|
|
|
irc: Remove unnecessary stores
|
|
If hashmap creation fails (eg. not enough memory), it jumps to the label
"end", where it checks the pointer tags, that hadn't been initialized
before.
The simple fix is to initialize it before creating the hashmap.
|
|
|
|
|
|
config_file_section_insert_in_config (issue #1012)
|
|
|
|
function hdata_update
|
|
|
|
This is better for symmetry of comparison callback (comparing buffer1 and
buffer2 will give same as comparing buffer2 and bufer1).
Thanks to Simmo Saan for reporting the problem.
|
|
gui_bar_get_min_height (issue #1012)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prompt (closes #1010)
|
|
|
|
|
|
|
|
signal/modifier hooks
|
|
core: remove config_look_hotlist_add_buffer_if_away completely
|
|
|
|
|
|
|
|
|
|
insensitive comparison
|