diff options
| author | Nils Wallménius <nils@rockbox.org> | 2008-04-16 19:51:43 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2008-04-16 19:51:43 +0000 |
| commit | a01996436d09eca8ae114e67005d2cac73cae7b3 (patch) | |
| tree | 013d6787d3c03265049536677e817572c4285119 /apps/language.c | |
| parent | d65930f9720b0d51313b0e76251e56d2ffa144dd (diff) | |
| download | rockbox-a01996436d09eca8ae114e67005d2cac73cae7b3.zip rockbox-a01996436d09eca8ae114e67005d2cac73cae7b3.tar.gz rockbox-a01996436d09eca8ae114e67005d2cac73cae7b3.tar.bz2 rockbox-a01996436d09eca8ae114e67005d2cac73cae7b3.tar.xz | |
Use file_exists and dir_exists functions where appropriate, fix one wrong file descriptor check and one possible dir descriptor leak
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17147 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/language.c')
| -rw-r--r-- | apps/language.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/language.c b/apps/language.c index 3a4d0b3..fb4f7da 100644 --- a/apps/language.c +++ b/apps/language.c @@ -46,7 +46,7 @@ int lang_load(const char *filename) int fd = open(filename, O_RDONLY); int retcode=0; unsigned char lang_header[3]; - if(fd == -1) + if(fd < 0) return 1; fsize = filesize(fd) - 2; if(fsize <= MAX_LANGUAGE_SIZE) { |