diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-18 09:20:45 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-07-18 09:20:45 +0000 |
commit | 4c12791c22af8f11f8c338d3450db9104b46a744 (patch) | |
tree | 56fcd7e34907408c261dfd16df30e2c9f8473b91 /main/at-spi2-core/fix-buffer-overrun.patch | |
parent | fe7a1920fc60dd0c7a2b6516cfa7b6e3555b8f53 (diff) | |
download | aports-4c12791c22af8f11f8c338d3450db9104b46a744.tar.bz2 aports-4c12791c22af8f11f8c338d3450db9104b46a744.tar.xz |
main/at-spi2-core: upgrade to 2.28.0
Diffstat (limited to 'main/at-spi2-core/fix-buffer-overrun.patch')
-rw-r--r-- | main/at-spi2-core/fix-buffer-overrun.patch | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/main/at-spi2-core/fix-buffer-overrun.patch b/main/at-spi2-core/fix-buffer-overrun.patch deleted file mode 100644 index 9c434eace7..0000000000 --- a/main/at-spi2-core/fix-buffer-overrun.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ru at-spi2-core-2.16.0.orig/bus/at-spi-bus-launcher.c at-spi2-core-2.16.0/bus/at-spi-bus-launcher.c ---- at-spi2-core-2.16.0.orig/bus/at-spi-bus-launcher.c 2015-03-05 06:04:20.000000000 +0200 -+++ at-spi2-core-2.16.0/bus/at-spi-bus-launcher.c 2015-10-25 16:00:32.158127066 +0200 -@@ -104,7 +104,7 @@ - { - ssize_t bytes_read; - -- while (max_bytes > 1 && (bytes_read = read (fd, buf, MAX (4096, max_bytes - 1)))) -+ while (max_bytes > 1 && (bytes_read = read (fd, buf, max_bytes - 1))) - { - if (bytes_read < 0) - return FALSE; |