Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (4)
Fix build on non-x86 architectures
· 6fee48ab
Andreas Tille
authored
Dec 02, 2018
6fee48ab
Remove trailing whitespace in debian/changelog
· db1ade1e
Andreas Tille
authored
Dec 02, 2018
db1ade1e
Remove trailing whitespace in debian/copyright
· 263cd7bf
Andreas Tille
authored
Dec 02, 2018
263cd7bf
Upload to unstable
· 5c3fba39
Andreas Tille
authored
Dec 02, 2018
5c3fba39
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
5c3fba39
staden-io-lib (1.14.11-2) unstable; urgency=medium
* Fix build on non-x86 architectures (thanks to James Bonfield
<jkb@sanger.ac.uk>)
Closes: #912451
* Remove trailing whitespace in debian/changelog
* Remove trailing whitespace in debian/copyright
-- Andreas Tille <tille@debian.org> Sun, 02 Dec 2018 08:50:21 +0100
staden-io-lib (1.14.11-1) unstable; urgency=medium
* New upstream version featuring SOVERSION bump
...
...
debian/copyright
View file @
5c3fba39
debian/patches/fix_non_x86.patch
0 → 100644
View file @
5c3fba39
From: James Bonfield <jkb@sanger.ac.uk>
Date: Wed, 28 Nov 2018 16:46:36 +0000
Origin: https://github.com/jkbonfield/io_lib/commit/faa2a8a71129a94e4911f4d1231048aa259f8a1b
Bug-Debian: https://bugs.debian.org/912451
Subject: [PATCH] Bug fix to scramble on systems not defining ALLOW_UAC.
(Mostly non-Intel platforms.)
---
io_lib/bam.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/io_lib/bam.c b/io_lib/bam.c
index 387dcec..55d0919 100644
--- a/io_lib/bam.c
+++ b/io_lib/bam.c
@@ -1751,11 +1751,11 @@
int bam_get_seq(bam_file_t *b, bam_seq_t **bsp) {
return -1;
}
- if (!*bsp || blk_size+24 > (*bsp)->alloc) {
- if (!(bs = realloc(*bsp, blk_size+24)))
+ if (!*bsp || blk_size+44 > (*bsp)->alloc) {
+ if (!(bs = realloc(*bsp, blk_size+44)))
return -1;
*bsp = bs;
- (*bsp)->alloc = blk_size+24;
+ (*bsp)->alloc = blk_size+44;
(*bsp)->blk_size = blk_size;
}
bs = *bsp;
debian/patches/series
View file @
5c3fba39
pathmax.patch
fix_fseeko.patch
fix_non_x86.patch