diff options
author | Leo Famulari <leo@famulari.name> | 2016-12-16 15:23:47 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-12-16 15:28:02 -0500 |
commit | f8faf537cae393b9d9bdb7fd476ad5f79dedaf91 (patch) | |
tree | 734e3c45e3a5126d89fb094b7ff23717812af9b9 /gnu/packages/libupnp.scm | |
parent | 850812decf3aace39e20f2f6b95e23f9691f7865 (diff) | |
download | patches-f8faf537cae393b9d9bdb7fd476ad5f79dedaf91.tar patches-f8faf537cae393b9d9bdb7fd476ad5f79dedaf91.tar.gz |
gnu: libupnp: Fix CVE-2016-8863.
* gnu/packages/patches/libupnp-CVE-2016-8863.patch: New file.
* gnu/local.mk (dist_patch_DATA): Use it.
* gnu/packages/libupnp.scm (libupnp)[source]: Use it.
Diffstat (limited to 'gnu/packages/libupnp.scm')
-rw-r--r-- | gnu/packages/libupnp.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/libupnp.scm b/gnu/packages/libupnp.scm index b9209bf04b..ea4d1bd25e 100644 --- a/gnu/packages/libupnp.scm +++ b/gnu/packages/libupnp.scm @@ -32,7 +32,8 @@ (method url-fetch) (uri (string-append "mirror://sourceforge/pupnp/pupnp/libUPnP%20" version "/" name "-" version ".tar.bz2")) - (patches (search-patches "libupnp-CVE-2016-6255.patch")) + (patches (search-patches "libupnp-CVE-2016-6255.patch" + "libupnp-CVE-2016-8863.patch")) (sha256 (base32 "0qrsdsb1qm85hc4jy04qph895613d148f0x1mmk6z99y3q43fdgf")))) |