diff options
author | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-11 23:10:15 +0000 |
---|---|---|
committer | Guillaume Cottenceau <gc@mandriva.com> | 2001-01-11 23:10:15 +0000 |
commit | 774e371261e54ced36c80addd09342f2d06344ed (patch) | |
tree | ab3399b8433c12d7bdde748e8d5f1c40bbf13ba0 | |
parent | bacdce0a4c5420430d1ac818a41f423a3f269613 (diff) | |
download | drakx-774e371261e54ced36c80addd09342f2d06344ed.tar drakx-774e371261e54ced36c80addd09342f2d06344ed.tar.gz drakx-774e371261e54ced36c80addd09342f2d06344ed.tar.bz2 drakx-774e371261e54ced36c80addd09342f2d06344ed.tar.xz drakx-774e371261e54ced36c80addd09342f2d06344ed.zip |
close some fd's
-rw-r--r-- | mdk-stage1/probing.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mdk-stage1/probing.c b/mdk-stage1/probing.c index 7f3607c3d..9898d35f0 100644 --- a/mdk-stage1/probing.c +++ b/mdk-stage1/probing.c @@ -114,6 +114,8 @@ void probe_that_type(enum driver_type type) } } } + + fclose(f); } } @@ -194,6 +196,7 @@ static void find_media(void) buf[i-1] = '\0'; /* eat the \n */ tmp[count].model = strdup(buf); } + close(fd); log_message("IDE/%d: %s is a %s", tmp[count].type, tmp[count].name, tmp[count].model); tmp[count].bus = IDE; |