aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar lostd <lostd@2f30.org>2014-10-08 15:27:46 +0300
committerGravatar lostd <lostd@2f30.org>2014-10-08 15:27:46 +0300
commitbc766bc4a88accf873d9ec29e7c274804065a916 (patch)
treef3245883d82289ec1bc6d5255672347ebd3413a0
parent4b56e4a122c9c16d00f459a992496423e2abce63 (diff)
downloadnnn-bc766bc4a88accf873d9ec29e7c274804065a916.tar.gz
Fix memory leaks
-rw-r--r--noice.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/noice.c b/noice.c
index eed9189..9c6aac5 100644
--- a/noice.c
+++ b/noice.c
@@ -421,6 +421,7 @@ again:
bin = openwith(name);
if (bin == NULL) {
printmsg("No association");
+ free(pathnew);
goto nochange;
}
@@ -439,6 +440,7 @@ again:
goto redraw;
default:
printmsg("Unsupported file");
+ free(pathnew);
goto nochange;
}
}