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:
Gisle Vanem 2019-04-22 03:04:26 -04:00 committed by Jay Satiro
parent f0950acc07
commit b21701c54b
1 changed files with 2 additions and 2 deletions

View File

@ -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
}
}