Even when readline() returns an empty buffer, we still need to free() it to
avoid leaking memory.
Signed-off-by: Esben Haabendal <esben@geanix.com>
[Kent: suggested a shorter version]
Co-developed-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
fflush(stdout);
line = readline(PROMPT);
- if (!line || line[0] == '\0')
+ if (!line || line[0] == '\0') {
+ free(line);
continue;
+ }
for (i = strlen(line) - 1; (i > 0) && isspace(line[i]); i--)
line[i] = '\0';