X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Ffgets_str.c;h=6588f948288025a3a6c33e2213f9d369eba20879;hb=44608e9693b03661fbab5e27650bb040c6871d11;hp=33d8d00ccc3c2d37ab79e55f373e05e16a7e6011;hpb=a0f0ae5a7acd71c3c56df5183e38c189c3151c98;p=oweals%2Fbusybox.git diff --git a/libbb/fgets_str.c b/libbb/fgets_str.c index 33d8d00cc..6588f9482 100644 --- a/libbb/fgets_str.c +++ b/libbb/fgets_str.c @@ -1,17 +1,23 @@ +/* vi: set sw=4 ts=4: */ /* - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. + * Utility routines. * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU Library General Public License for more details. + * Copyright (C) many different people. If you wrote this, please + * acknowledge your work. * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ @@ -19,11 +25,10 @@ #include #include -/* - * Continue reading from file until the terminating string is encountered. - * Return data as string. - * e.g. fgets_str(file, "\n"); will read till end of file - */ +#include "libbb.h" + +/* Read up to (and including) TERMINATING_STRING from FILE and return it. + * Return NULL on EOF. */ char *fgets_str(FILE *file, const char *terminating_string) { @@ -37,12 +42,13 @@ char *fgets_str(FILE *file, const char *terminating_string) while (1) { ch = fgetc(file); if (ch == EOF) { - break; + free(linebuf); + return NULL; } /* grow the line buffer as necessary */ while (idx > linebufsz - 2) { - linebuf = realloc(linebuf, linebufsz += 1000); /* GROWBY */ + linebuf = xrealloc(linebuf, linebufsz += 1000); } linebuf[idx] = ch; @@ -55,9 +61,6 @@ char *fgets_str(FILE *file, const char *terminating_string) break; } } - if (idx == 0) { - return NULL; - } linebuf[idx] = '\0'; return(linebuf); }