[uwac] use posix functions

This commit is contained in:
Armin Novak 2023-11-22 09:44:37 +01:00 committed by akallabeth
parent 854df33db1
commit 615604e8f2
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ static bool dupstr(char** dst, const char* src)
*dst = NULL;
if (!src)
return true;
*dst = _strdup(src);
*dst = strdup(src);
return *dst != NULL;
}