Commit fde034ac authored by Youness Alaoui's avatar Youness Alaoui

use g_strdup instead of strdup

parent 09e8a1f2
......@@ -1192,8 +1192,8 @@ nice_agent_get_local_credentials (
goto done;
}
*ufrag = strdup (stream->local_ufrag);
*pwd = strdup (stream->local_password);
*ufrag = g_strdup (stream->local_ufrag);
*pwd = g_strdup (stream->local_password);
ret = TRUE;
done:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment