diff options
author | 2009-10-03 15:04:34 +0000 | |
---|---|---|
committer | 2009-10-03 15:04:34 +0000 | |
commit | 2ed599b3696baa8a49fb0987f0d949b1f66a7b75 (patch) | |
tree | 9543aef11757ad063736b5ede198ca7d953c3684 /sci-misc/boinc/files | |
parent | amd64 stable (diff) | |
download | gentoo-2-2ed599b3696baa8a49fb0987f0d949b1f66a7b75.tar.gz gentoo-2-2ed599b3696baa8a49fb0987f0d949b1f66a7b75.tar.bz2 gentoo-2-2ed599b3696baa8a49fb0987f0d949b1f66a7b75.zip |
Revision bump to fix segfault. Per bug #287441. Thx to Isaac Chanin for the patch.
(Portage version: 2.2_rc41/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/boinc/files')
-rw-r--r-- | sci-misc/boinc/files/6.6.40-xfersigseg.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sci-misc/boinc/files/6.6.40-xfersigseg.patch b/sci-misc/boinc/files/6.6.40-xfersigseg.patch new file mode 100644 index 000000000000..5a96a19538ec --- /dev/null +++ b/sci-misc/boinc/files/6.6.40-xfersigseg.patch @@ -0,0 +1,11 @@ +--- boinc-6.6.40/client/pers_file_xfer.cpp.orig 2009-10-02 20:55:03.419212277 -0400 ++++ boinc-6.6.40/client/pers_file_xfer.cpp 2009-10-02 20:55:43.626712540 -0400 +@@ -270,7 +270,7 @@ + // so that we'll query file size on next retry. + // Otherwise leave it as is, avoiding unnecessary size query. + // +- if (fxp->bytes_xferred || (fip->urls.size() > 1)) { ++ if (last_bytes_xferred || (fip->urls.size() > 1)) { + fip->upload_offset = -1; + } + |