libpurple/protocols/gg/oauth/oauth-parameter.c

changeset 38931
41b4c8bf1d52
parent 34232
a5517f235e0f
child 39916
6a79856cb8f5
--- a/libpurple/protocols/gg/oauth/oauth-parameter.c	Thu Apr 05 23:05:09 2018 -0500
+++ b/libpurple/protocols/gg/oauth/oauth-parameter.c	Sat Jul 22 15:13:37 2017 -0500
@@ -43,12 +43,12 @@
 	if (list == NULL)
 		return -1;
 
-	new_key = strdup(key);
+	new_key = g_strdup(key);
 
 	if (new_key == NULL)
 		return -1;
 
-	new_value = strdup(value);
+	new_value = g_strdup(value);
 
 	if (new_value == NULL) {
 		free(new_key);

mercurial