libpurple/protocols/jabber/auth_digest_md5.c

branch
release-2.x.y
changeset 40758
cf9821fc48e7
parent 33788
83e5594ced88
--- a/libpurple/protocols/jabber/auth_digest_md5.c	Thu Feb 11 23:53:15 2021 -0600
+++ b/libpurple/protocols/jabber/auth_digest_md5.c	Thu Feb 11 23:54:58 2021 -0600
@@ -131,7 +131,7 @@
 
 	a1 = g_strdup_printf("xxxxxxxxxxxxxxxx:%s:%s", nonce, cnonce);
 	a1len = strlen(a1);
-	g_memmove(a1, result, 16);
+	memmove(a1, result, 16);
 
 	purple_cipher_context_reset(context, NULL);
 	purple_cipher_context_append(context, (const guchar *)a1, a1len);

mercurial