diff options
Diffstat (limited to 'user/fastjar/write-return.patch')
-rw-r--r-- | user/fastjar/write-return.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/user/fastjar/write-return.patch b/user/fastjar/write-return.patch new file mode 100644 index 000000000..795179fcd --- /dev/null +++ b/user/fastjar/write-return.patch @@ -0,0 +1,15 @@ +From: Chris Ball <cjb@laptop.org> +Date: Thu, 10 Jun 2010 08:46:10 +0000 +Subject: [PATCH] jartool.c (add_file_to_jar): Fix write return value check. + +--- a/jartool.c 2010/03/01 15:38:43 1.60 ++++ b/jartool.c 2010/06/10 08:46:10 1.61 +@@ -1258,7 +1258,7 @@ + exit_on_error("write"); + + /* write the file name to the zip file */ +- if (1 == write(jfd, fname, file_name_length)) ++ if (-1 == write(jfd, fname, file_name_length)) + exit_on_error("write"); + + if(verbose){ |