diff options
author | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-21 20:19:08 +0000 |
---|---|---|
committer | Michael Sterrett <mr_bones_@gentoo.org> | 2009-10-21 20:19:08 +0000 |
commit | 1accf1e4ecd080fbd9b3b2962aae6568297cc607 (patch) | |
tree | be157a2903d6cd327ec25bdc9f08e3b29e991306 /games-util/xqf/files | |
parent | Fix playing of sound. Install sound files under SITEETC. (diff) | |
download | gentoo-2-1accf1e4ecd080fbd9b3b2962aae6568297cc607.tar.gz gentoo-2-1accf1e4ecd080fbd9b3b2962aae6568297cc607.tar.bz2 gentoo-2-1accf1e4ecd080fbd9b3b2962aae6568297cc607.zip |
Add patch to avoid cpu burn - submitted by Yannick Martin via bug #288853
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'games-util/xqf/files')
-rw-r--r-- | games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch b/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch new file mode 100644 index 000000000000..567d82a6a6c2 --- /dev/null +++ b/games-util/xqf/files/xqf-1.0.5-cpu-overrun.patch @@ -0,0 +1,22 @@ +diff -aburN xqf.orig/src/launch.c xqf/src/launch.c +--- xqf.orig/src/launch.c 2009-10-13 11:58:24.000000000 +0200 ++++ xqf/src/launch.c 2009-10-13 11:59:35.000000000 +0200 +@@ -168,13 +168,17 @@ + + res = read (fd, cl->buffer + cl->pos, CLIENT_ERROR_BUFFER - 1 - cl->pos); + +- if (res <= 0) { /* read error or EOF */ ++ if (res < 0) { /* read error or EOF */ + if (errno == EAGAIN || errno == EWOULDBLOCK) + return; + + client_detach (cl); + return; + } ++ else if (res == 0) { ++ client_detach (cl); ++ return; ++ } + + if (cl->pos + res == CLIENT_ERROR_BUFFER - 1) { + tmp = &cl->buffer[CLIENT_ERROR_BUFFER - 1]; |