diff options
author | jbj <devnull@localhost> | 1998-11-25 00:42:36 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 1998-11-25 00:42:36 +0000 |
commit | b2fd4c2d88653aa2d3832e24c066f9d5d204772a (patch) | |
tree | 3ef071c68e085812031a13ea81596db25d04c724 /rpm2cpio.c | |
parent | 4551a1256f6c43498c838838fe9343e8b6ccb69a (diff) | |
download | librpm-tizen-b2fd4c2d88653aa2d3832e24c066f9d5d204772a.tar.gz librpm-tizen-b2fd4c2d88653aa2d3832e24c066f9d5d204772a.tar.bz2 librpm-tizen-b2fd4c2d88653aa2d3832e24c066f9d5d204772a.zip |
Add dup for the "other" gzdopen premature close.
CVS patchset: 2556
CVS date: 1998/11/25 00:42:36
Diffstat (limited to 'rpm2cpio.c')
-rw-r--r-- | rpm2cpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpm2cpio.c b/rpm2cpio.c index 4f444c473..bc23dcc93 100644 --- a/rpm2cpio.c +++ b/rpm2cpio.c @@ -61,7 +61,7 @@ int main(int argc, char **argv) rc = EXIT_SUCCESS; } - gzdClose(gzdi); + gzdClose(gzdi); /* XXX gzdi == fdi */ return rc; } |