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 ( ...@@ -1192,8 +1192,8 @@ nice_agent_get_local_credentials (
goto done; goto done;
} }
*ufrag = strdup (stream->local_ufrag); *ufrag = g_strdup (stream->local_ufrag);
*pwd = strdup (stream->local_password); *pwd = g_strdup (stream->local_password);
ret = TRUE; ret = TRUE;
done: 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