2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-25 11:19:59 +01:00

engine: common: comply with C89 in OpenBSD wai_getExecutablePath

This commit is contained in:
Henry Ford 2023-11-21 14:59:09 -05:00 committed by Alibek Omarov
parent f330aac113
commit e7e1677786

View File

@ -632,12 +632,14 @@ int WAI_PREFIX(getExecutablePath)(char* out, int capacity, int* dirname_length)
else
{
const char* PATH = getenv("PATH");
const char* begin;
size_t argv0_length;
if (!PATH)
break;
size_t argv0_length = strlen(argv[0]);
argv0_length = strlen(argv[0]);
const char* begin = PATH;
begin = PATH;
while (1)
{
const char* separator = strchr(begin, ':');