diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-08-30 03:56:57 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2013-10-03 23:17:06 +0200 |
commit | 7ba7437fc31310e256b9c92dd72078c7bb396184 (patch) | |
tree | 0781c700fd56f512e4c00df72b96a7f2b917d885 | |
parent | fa8c377d6befb9131daf854ee600e1ebc9507290 (diff) | |
download | perl-URPM-7ba7437fc31310e256b9c92dd72078c7bb396184.tar perl-URPM-7ba7437fc31310e256b9c92dd72078c7bb396184.tar.gz perl-URPM-7ba7437fc31310e256b9c92dd72078c7bb396184.tar.bz2 perl-URPM-7ba7437fc31310e256b9c92dd72078c7bb396184.tar.xz perl-URPM-7ba7437fc31310e256b9c92dd72078c7bb396184.zip |
coverity: add a comment about "Argument cannot be negative"
"fd" is passed to a parameter that cannot be negative.
-rw-r--r-- | URPM.xs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -985,7 +985,7 @@ open_archive(char *filename, int *empty_archive) { } } } - close(fd); + close(fd); // we rely on EBADF in testsuite return rfd; } |