diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2020-09-13 13:02:52 +0100 |
---|---|---|
committer | Pierre Langlois <pierre.langlois@gmx.com> | 2020-09-16 19:55:14 +0100 |
commit | 891b045f3848596c8939e31e80185f31448cade1 (patch) | |
tree | 47ef42c510b1e3ea694eb0c52bc0f50c9902ea6a /gnu/packages/mail.scm | |
parent | d7f7ed39be3be926b3c46c0ea15d416c593ef61f (diff) | |
download | guix-891b045f3848596c8939e31e80185f31448cade1.tar guix-891b045f3848596c8939e31e80185f31448cade1.tar.gz |
gnu: mailutils: Fix unitialized variable in readmsg.
Fixes <https://bugs.gnu.org/43088>.
* gnu/packages/patches/mailutils-fix-uninitialized-variable.patch: New
file.
* gnu/packages/mail.scm (mailutils)[source]: Add patch.
* gnu/local.mk (dist_patch_DATA): Register patch.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 3e6d975ee4..06b04d6024 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -197,7 +197,10 @@ example, modify the message headers or body, or encrypt or sign the message.") version ".tar.xz")) (sha256 (base32 - "17smrxjdgbbzbzakik30vj46q4iib85ksqhb82jr4vjp57akszh9")))) + "17smrxjdgbbzbzakik30vj46q4iib85ksqhb82jr4vjp57akszh9")) + (patches + ;; Fixes https://issues.guix.gnu.org/43088. + (search-patches "mailutils-fix-uninitialized-variable.patch")))) (build-system gnu-build-system) (arguments `(#:phases |