Skip to content
Snippets Groups Projects
Commit 3f7d5ca8 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Merge remote-tracking branch 'origin/tc-memleak-fix' into stable

parents 79b74453 9958a12d
No related branches found
No related tags found
No related merge requests found
...@@ -67,7 +67,7 @@ void tc_printf(char *fmt, ...) { ...@@ -67,7 +67,7 @@ void tc_printf(char *fmt, ...) {
if (stat == -1) if (stat == -1)
tc_error("Can't write into pager - %d", errno); tc_error("Can't write into pager - %d", errno);
va_end(args); va_end(args);
if (!str) if (str)
free(str); free(str);
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment