diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2016-02-29 02:53:08 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2016-02-29 02:53:33 -0500 |
commit | 270f6af778bcf8f5c6bb68bf9aac10593b20de4d (patch) | |
tree | 3d9e2ee704a36b5a463b065a7b7ed3cd1069b765 /app-misc/fdupes/files | |
parent | dev-ruby/spring: add 1.6.4 (diff) | |
download | gentoo-270f6af778bcf8f5c6bb68bf9aac10593b20de4d.tar.gz gentoo-270f6af778bcf8f5c6bb68bf9aac10593b20de4d.tar.bz2 gentoo-270f6af778bcf8f5c6bb68bf9aac10593b20de4d.zip |
app-misc/fdupes: remove stdin as lvalue, bug #574610
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-misc/fdupes/files')
-rw-r--r-- | app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch new file mode 100644 index 000000000000..65c06e3f1ddf --- /dev/null +++ b/app-misc/fdupes/files/fdupes-1.51-fix-stdin-lvalue.patch @@ -0,0 +1,20 @@ +This is a combination of upstream's fe2d8334 and 03abad. See +https://bugs.gentoo.org/show_bug.cgi?id=574610. + +diff -Naur fdupes-1.51.orig/fdupes.c fdupes-1.51/fdupes.c +--- fdupes-1.51.orig/fdupes.c 2013-04-20 14:02:18.000000000 -0400 ++++ fdupes-1.51/fdupes.c 2016-02-29 02:45:36.360804360 -0500 +@@ -1164,7 +1164,12 @@ + } + else + { +- stdin = freopen("/dev/tty", "r", stdin); ++ if (freopen("/dev/tty", "r", stdin) == 0) ++ { ++ errormsg("could not open terminal for input\n"); ++ exit(1); ++ } ++ + deletefiles(files, 1, stdin); + } + } |