From: Tobias Geerinckx-Rice Date: Thu, 28 Feb 2019 20:29:00 +0100 Subject: [PATCH] netpbm: Fix CVE-2017-2586. Copied verbatim from Debian[0]. [0]: https://sources.debian.org/data/main/n/netpbm-free/2:10.78.05-0.1/debian/patches/netpbm-CVE-2017-2586.patch --- diff -urNp old/converter/other/svgtopam.c new/converter/other/svgtopam.c --- old/converter/other/svgtopam.c 2017-02-08 12:11:02.593690917 +0100 +++ new/converter/other/svgtopam.c 2017-02-08 12:13:05.192846469 +0100 @@ -676,7 +676,7 @@ stringToUint(const char * const string /* TODO: move this to nstring.c */ - if (strlen(string) == 0) + if (string == NULL || strlen(string) == 0) pm_asprintf(errorP, "Value is a null string"); else { char * tailptr; d'>koszko Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/vim.scm
AgeCommit message (Expand)Author
2023-07-05gnu: vim-full: Remove expat linker workaround....Python has correctly linked with expat for several years now. * gnu/packages/vim.scm (vim-full)[arguments]: Remove make-flags. Efraim Flashner
2023-07-05gnu: vim: Update to 9.0.1672....* gnu/packages/vim.scm (vim): Update to 9.0.1672. [arguments]: Adjust custom 'skip-or-fix-failing-tests to skip another test. Efraim Flashner
2023-07-01gnu: neovim: Update to 0.9.1....* gnu/packages/vim.scm (neovim): Update to 0.9.1. Signed-off-by: Christopher Baines <mail@cbaines.net> Benjamin
2023-05-23gnu: vim-guix-vim: Update to 0.4.0....* gnu/packages/vim.scm (vim-guix-vim): Update to 0.4.0. [source]: Download from new upstream URL. [home-page]: Use new home-page. Efraim Flashner
2023-05-14gnu: vim: Update to 9.0.1384....* gnu/packages/vim.scm (vim): Update to 9.0.1384. Efraim Flashner
2023-05-07gnu: neovim update to 0.9.0....* gnu/packages/vim.scm (neovim): Update to 0.9.0. [arguments]: Adjust phase 'prevent-embedding-gcc-store-path to changes in the source code. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Benjamin
2023-05-04gnu: vifm: Update to 0.13....* gnu/packages/vim.scm (vifm): Update to 0.13. [arguments]: Adjust substitutions in custom 'patch-test-shebangs phase. Efraim Flashner
2023-03-31gnu: Replace all uses of atk by at-spi2-core....* gnu/packages/animation.scm (gnash) * gnu/packages/chromium.scm (ungoogled-chromium) * gnu/packages/crates-gtk.scm (rust-atk-sys-0.14, rust-atk-sys-0.10, rust-atk-0.14, rust-gtk-0.14) * gnu/packages/gimp.scm (gimp) * gnu/packages/gnome.scm (evince, glade3, clutter, totem, rhythmbox, mutter, ghex): * gnu/packages/graphviz.scm (xdot) * gnu/packages/gtk.scm (gtk+-2, gtk+, guile-gnome, atkmm) * gnu/packages/mate.scm (mate-applets, atril, mate-control-center, mate-calc, mate-utils, eom, pluma) * gnu/packages/messaging.scm (dino) * gnu/packages/qt.scm (qtwebengine-5) * gnu/packages/rust-apps.scm (alfis) * gnu/packages/vim.scm (vim-full) * gnu/packages/vnc.scm (remmina) * gnu/packages/web.scm (castor): Replace atk by at-spi2-core. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net> Josselin Poiret