-
-
Notifications
You must be signed in to change notification settings - Fork 14
Open
Description
Hello,
First thanks for your work. We are using it for Steam integration with our project.
I just wanted to report back to you some issues we found in the Windows part of the code.
This line won't compile, val should be buf:
Line 72 in c49d0df
| const DWORD rc = GetEnvironmentVariableA(key, val, buflen); |
This ternary seems to be backward:
Line 74 in c49d0df
| return ((rc > 0) && (rc < buflen)) ? NULL : buf; |
It should be:
return ((rc > 0) && (rc < buflen)) ? buf : NULL;
SIGPIPE does not seem to be supported on Windows, so those 2 lines don't compile:
Line 188 in c49d0df
| signal(SIGPIPE, SIG_IGN); |
Line 208 in c49d0df
| signal(SIGPIPE, SIG_DFL); |
Metadata
Metadata
Assignees
Labels
No labels