mirror of
https://github.com/curl/curl.git
synced 2026-07-24 15:37:16 +03:00
tool_parsecfg: Use correct return type for GetModuleFileName()
GetModuleFileName() returns a DWORD which is a typedef of an unsigned long and not an int. Closes #3980
This commit is contained in:
parent
8c88e8e623
commit
3538026f6f
1 changed files with 3 additions and 2 deletions
|
|
@ -76,8 +76,9 @@ int parseconfig(const char *filename, struct GlobalConfig *global)
|
|||
* already declared via inclusions done in setup header file.
|
||||
* We assume that we are using the ASCII version here.
|
||||
*/
|
||||
int n = GetModuleFileNameA(0, filebuffer, sizeof(filebuffer));
|
||||
if(n > 0 && n < (int)sizeof(filebuffer)) {
|
||||
unsigned long len = GetModuleFileNameA(0, filebuffer,
|
||||
sizeof(filebuffer));
|
||||
if(len > 0 && len < sizeof(filebuffer)) {
|
||||
/* We got a valid filename - get the directory part */
|
||||
char *lastdirchar = strrchr(filebuffer, '\\');
|
||||
if(lastdirchar) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue