Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
buflist.format.name (issue #1020)
|
|
|
|
|
|
(closes #1022)
This regression was introduced by commit
fadee506642ee80f42027816cc6cb758dcb68011 (issue #1019)
|
|
when the nick already exists (closes #1019)
|
|
|
|
|
|
core: update Japanese translations
|
|
|
|
|
|
|
|
irc_server_get_number_buffer (issue #1012)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
core: update Japanese translations
|
|
|
|
|
|
|
|
|
|
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.
|