mirror of
https://github.com/moparisthebest/curl
synced 2024-12-23 16:48:49 -05:00
memdebug: fix variable name
Follow-up to 76b6348
which renamed logfile as curl_dbg_logfile.
Ref: https://github.com/curl/curl/commit/76b6348#r33259088
This commit is contained in:
parent
f0950acc07
commit
b21701c54b
@ -114,8 +114,8 @@ void curl_dbg_memdebug(const char *logname)
|
||||
curl_dbg_logfile = stderr;
|
||||
#ifdef MEMDEBUG_LOG_SYNC
|
||||
/* Flush the log file after every line so the log isn't lost in a crash */
|
||||
if(logfile)
|
||||
setbuf(logfile, (char *)NULL);
|
||||
if(curl_dbg_logfile)
|
||||
setbuf(curl_dbg_logfile, (char *)NULL);
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user