public inbox for b.a.t.m.a.n@lists.open-mesh.org
 help / color / mirror / Atom feed
* [B.A.T.M.A.N.] [PATCH] batctl: exit on parse error in batctl ll
@ 2012-01-22 13:22 Simon Wunderlich
  2012-01-22 13:46 ` Marek Lindner
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Wunderlich @ 2012-01-22 13:22 UTC (permalink / raw)
  To: b.a.t.m.a.n

If the argument could not be understood, we should not try to
apply something, but return from the function.

Signed-off-by: Simon Wunderlich <siwu@hrz.tu-chemnitz.de>
---
 sys.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/sys.c b/sys.c
index 9cdccba..ab7d75f 100644
--- a/sys.c
+++ b/sys.c
@@ -221,8 +221,11 @@ int handle_loglevel(char *mesh_iface, int argc, char **argv)
 				log_level |= (1 << 1);
 			else if (strcmp(argv[i], "tt") == 0)
 				log_level |= (1 << 2);
-			else
+			else {
 				log_level_usage();
+				free(path_buff);
+				return EXIT_FAILURE;
+			}
 		}
 
 		snprintf(str, sizeof(str), "%i", log_level);
-- 
1.7.8.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-01-26 19:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-22 13:22 [B.A.T.M.A.N.] [PATCH] batctl: exit on parse error in batctl ll Simon Wunderlich
2012-01-22 13:46 ` Marek Lindner
2012-01-22 18:31   ` [B.A.T.M.A.N.] [PATCHv2] " Simon Wunderlich
2012-01-26 19:47     ` Marek Lindner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox