Skip to content
Snippets Groups Projects
Commit 7b025702 authored by Morris Jette's avatar Morris Jette
Browse files

Make local readline functions all consistent code

parent 788f7e28
No related branches found
No related tags found
No related merge requests found
......@@ -254,6 +254,7 @@ static char *_getline(const char *prompt)
char buf[4096];
char *line;
int len;
printf("%s", prompt);
/* Set "line" here to avoid a warning, discard later */
......@@ -261,11 +262,13 @@ static char *_getline(const char *prompt)
if (line == NULL)
return NULL;
len = strlen(buf);
if ((len > 0) && (buf[len-1] == '\n'))
if ((len == 0) || (len >= 4096))
return NULL;
if (buf[len-1] == '\n')
buf[len-1] = '\0';
else
len++;
line = malloc (len * sizeof(char));
line = malloc(len * sizeof(char));
if (!line)
return NULL;
return strncpy(line, buf, len);
......
......@@ -251,14 +251,16 @@ static char *_getline(const char *prompt)
/* Set "line" here to avoid a warning, discard later */
line = fgets(buf, 4096, stdin);
if (line == NULL)
return NULL;
len = strlen(buf);
if (len == 0)
if ((len == 0) || (len >= 4096))
return NULL;
if (buf[len-1] == '\n')
buf[len-1] = '\0';
else
len++;
line = malloc (len * sizeof(char));
line = malloc(len * sizeof(char));
if (!line)
return NULL;
return strncpy(line, buf, len);
......
......@@ -213,6 +213,7 @@ static char *_getline(const char *prompt)
char buf[4096];
char *line;
int len;
printf("%s", prompt);
/* Set "line" here to avoid a warning, discard later */
......@@ -220,11 +221,13 @@ static char *_getline(const char *prompt)
if (line == NULL)
return NULL;
len = strlen(buf);
if ((len > 0) && (buf[len-1] == '\n'))
if ((len == 0) || (len >= 4096))
return NULL;
if (buf[len-1] == '\n')
buf[len-1] = '\0';
else
len++;
line = malloc (len * sizeof(char));
line = malloc(len * sizeof(char));
if (!line)
return NULL;
return strncpy(line, buf, len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment