Tiny memory leak fix in call error path.

This commit is contained in:
David Carlier 2017-06-20 15:16:11 +01:00
parent 1843d64156
commit 5409a57f13

View file

@ -539,6 +539,7 @@ void TXT_OpenURL(char *url)
{
fprintf(stderr,
"xdg-utils is not installed. Can't open this URL:\n%s\n", url);
free(cmd);
return;
}