Fix CVE-2016-5296: Heap-buffer-overflow WRITE in rasterize_edges_1 Adapted for upstream pixman based on: https://hg.mozilla.org/releases/mozilla-esr45/rev/5e39c1c2fded --- pixman-0.34.0/pixman/pixman-edge-imp.h.orig 2015-06-30 05:48:31.000000000 -0400 +++ pixman-0.34.0/pixman/pixman-edge-imp.h 2016-11-16 01:09:34.046335106 -0500 @@ -55,8 +55,9 @@ * * (The AA case does a similar adjustment in RENDER_SAMPLES_X) */ - lx += X_FRAC_FIRST(1) - pixman_fixed_e; - rx += X_FRAC_FIRST(1) - pixman_fixed_e; + /* we cast to unsigned to get defined behaviour for overflow */ + lx = (unsigned)lx + X_FRAC_FIRST(1) - pixman_fixed_e; + rx = (unsigned)rx + X_FRAC_FIRST(1) - pixman_fixed_e; #endif /* clip X */ if (lx < 0) );'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/aspell.scm
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-06-05gnu: ispell: Update to 3.4.04....* gnu/packages/aspell.scm (ispell): Update to 3.4.04. Tobias Geerinckx-Rice
2021-06-02gnu: ispell: Update to 3.4.03....* gnu/packages/aspell.scm (ispell): Update to 3.4.03. Tobias Geerinckx-Rice
2021-05-18gnu: hunspell-dict-en & variants: Make reproducible....* gnu/packages/aspell.scm (aspell-word-list)[arguments]: Add a new 'make-reproducible phase. Fixes <http://issues.guix.gnu.org/48499>. Tobias Geerinckx-Rice
2021-05-06gnu: aspell-dict-en: Update to 2020.12.07-0....* gnu/packages/aspell.scm (aspell-dict-en): Update to 2020.12.07-0. Tobias Geerinckx-Rice
2021-04-30gnu: Add aspell-dict-ro....* gnu/packages/aspell.scm (aspell-dict-ro): New variable. Signed-off-by: Julien Lepiller <julien@lepiller.eu> Sergiu Ivanov