From 2929b7b885b2e1db55f5ad701e5a8395660af5ca Mon Sep 17 00:00:00 2001 From: rlar Date: Sat, 18 May 2013 23:23:38 +0200 Subject: [PATCH] inpcom.c, emphasize a potential bug --- src/frontend/inpcom.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/inpcom.c b/src/frontend/inpcom.c index ca73b7a58..183bda404 100644 --- a/src/frontend/inpcom.c +++ b/src/frontend/inpcom.c @@ -2756,6 +2756,7 @@ inp_get_func_from_line(char *line) *end = '\0'; /* see if already encountered this function */ + /* FIXME, this code is unused, which is probably a bug */ for (i = 0; i < num_functions; i++) if (strcmp(functions[i].name, line) == 0) break;