1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 23:06:38 +02:00

core: fix crash when building hashtable string with keys and values

This commit is contained in:
Sebastien Helleu
2011-07-30 00:50:28 +02:00
parent a56c1097dc
commit dc8daef33d
+1 -1
View File
@@ -554,7 +554,7 @@ hashtable_compute_length_values_cb (void *data,
}
else
{
*length += strlen ("(null)");
*length += strlen ("(null)") + 1;
}
}