1
0
mirror of https://github.com/irssi/irssi.git synced 2024-07-21 03:14:16 -04:00

Use g_strndup, strndup is not available on old platforms

strndup is not available on Solaris 10, to ensure building is ok use
glib function.
This commit is contained in:
Claes Nästén 2021-05-15 18:10:02 +02:00
parent 768658f5d5
commit a3248d43ec

View File

@ -643,7 +643,7 @@ static enum otr_msg_status enqueue_otr_fragment(const char *msg, struct otr_peer
* Dup the string with enough space for the NULL byte since we are
* about to free it before passing it to the caller.
*/
*full_msg = strndup(opc->full_msg, opc->msg_len + 1);
*full_msg = g_strndup(opc->full_msg, opc->msg_len + 1);
/* Reset everything. */
free(opc->full_msg);
opc->full_msg = NULL;