Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
aports
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
alpine
aports
Commits
2bcdd427
Commit
2bcdd427
authored
12 years ago
by
Natanael Copa
Browse files
Options
Downloads
Patches
Plain Diff
main/xorg-server: security fix (CVE-2013-1940)
fixes
#1797
parent
f1087a94
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main/xorg-server/APKBUILD
+5
-3
5 additions, 3 deletions
main/xorg-server/APKBUILD
main/xorg-server/CVE-2013-1940.patch
+12
-0
12 additions, 0 deletions
main/xorg-server/CVE-2013-1940.patch
with
17 additions
and
3 deletions
main/xorg-server/APKBUILD
+
5
−
3
View file @
2bcdd427
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname
=
xorg-server
pkgver
=
1.10.4
pkgrel
=
1
pkgrel
=
2
pkgdesc
=
"X.Org X servers"
url
=
"http://xorg.freedesktop.org"
arch
=
"all"
...
...
@@ -63,7 +63,8 @@ source="http://xorg.freedesktop.org/releases/individual/xserver/$pkgname-$pkgver
bg-none-revert.patch
xserver-1.10-pointer-barriers.patch
cve-2011-4029.patch
"
CVE-2013-1940.patch
"
depends_dev
=
"pixman-dev libpciaccess-dev xproto randrproto renderproto
xextproto inputproto kbproto fontsproto videoproto xineramaproto
...
...
@@ -155,4 +156,5 @@ md5sums="94f23d30a77d63e27dd209a57fccfebf xorg-server-1.10.4.tar.bz2
222de594206d1148a90eddfda4f7a11a xorg-redhat-die-ugly-pattern-die-die-die.patch
030dd3ec221b895de3057d7513d8c1d7 bg-none-revert.patch
db48cea655c7bccec9171c5df1558a64 xserver-1.10-pointer-barriers.patch
09ecdf3b4e49bd2490946ac15b464535 cve-2011-4029.patch"
09ecdf3b4e49bd2490946ac15b464535 cve-2011-4029.patch
51b454ab1e68d09312e3e40bfd894d20 CVE-2013-1940.patch"
This diff is collapsed.
Click to expand it.
main/xorg-server/CVE-2013-1940.patch
0 → 100644
+
12
−
0
View file @
2bcdd427
--- ./hw/xfree86/os-support/shared/posix_tty.c.orig
+++ ./hw/xfree86/os-support/shared/posix_tty.c
@@ -460,7 +460,8 @@
{
fd_set fds;
struct timeval timeout;
- char c[4];
+ /* this needs to be big enough to flush an evdev event. */
+ char c[256];
DebugF("FlushingSerial\n");
if (tcflush(fd, TCIFLUSH) == 0)
This diff is collapsed.
Click to expand it.
Natanael Copa
@ncopa
mentioned in issue
#1797 (closed)
·
5 years ago
mentioned in issue
#1797 (closed)
mentioned in issue #1797
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment