mirror of
https://github.com/lua/lua
synced 2024-11-22 21:01:26 +03:00
remove of useless test in 'read_chars' (if n == 0 then the resulting
string cannot be empty).
This commit is contained in:
parent
f6cab9666c
commit
7f69f0efb0
4
liolib.c
4
liolib.c
@ -1,5 +1,5 @@
|
||||
/*
|
||||
** $Id: liolib.c,v 2.76 2007/04/19 20:22:32 roberto Exp roberto $
|
||||
** $Id: liolib.c,v 2.77 2007/12/08 11:54:32 roberto Exp roberto $
|
||||
** Standard I/O (and system) library
|
||||
** See Copyright Notice in lua.h
|
||||
*/
|
||||
@ -323,7 +323,7 @@ static int read_chars (lua_State *L, FILE *f, size_t n) {
|
||||
n -= nr; /* still have to read `n' chars */
|
||||
} while (n > 0 && nr == rlen); /* until end of count or eof */
|
||||
luaL_pushresult(&b); /* close buffer */
|
||||
return (n == 0 || lua_objlen(L, -1) > 0);
|
||||
return (lua_objlen(L, -1) > 0);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user