From 41beb477c5744bc396fa1162ee0c14218ec12213 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Mon, 27 May 2019 08:20:32 -0700 Subject: [PATCH] Fix bug in undefer_input() that misplaced the input state. --- fileio.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/fileio.c b/fileio.c index c042987..bc00d74 100644 --- a/fileio.c +++ b/fileio.c @@ -530,8 +530,10 @@ void undefer_input(__G) * This condition was checked when G.incnt_leftover was set > 0 in * defer_leftover_input(), and it is NOT allowed to touch G.csize * before calling undefer_input() when (G.incnt_leftover > 0) - * (single exception: see read_byte()'s "G.csize <= 0" handling) !! + * (single exception: see readbyte()'s "G.csize <= 0" handling) !! */ + if (G.csize < 0L) + G.csize = 0L; G.incnt = G.incnt_leftover + (int)G.csize; G.inptr = G.inptr_leftover - (int)G.csize; G.incnt_leftover = 0; ss='tabs'> aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/telephony.scm
AgeCommit message (Expand)Author
2024-11-14gnu: mumble: Update to 1.5.634, fix aarch64 build....[[PGP Signed Part:No public key for 3DECC105F5DD2382 created at 2024-10-28T20:22:22+0100 using RSA]] TestPacketDataStream failed to pass for aarch64 under 1.4.287 as described in <https://github.com/mumble-voip/mumble/issues/3845>. The new release fixes that. The new version changes some bundled dependencies. Some of them are only kept during the build for the sake of generating the text shown for third-party licenses under the "About" dialog. * gnu/packages/telephony.scm (mumble): Update to 1.5.634. [source]: Update 3rd party dirs kept during build. [arguments]: Update build options for bundled dependencies. [inputs]: Depend on OpenSSL 3 and N. Lohmann's JSON lib. [license]: Update licenses for bundled dependencies. Change-Id: I39498ffa143e4416b06a6aa1a31fd46cd0ba2e3b Signed-off-by: Ludovic Courtès <ludo@gnu.org> Ivan Vilata i Balaguer
2024-10-15gnu: sipwitch: Fix build....* gnu/packages/telephony.scm (sipwitch): Fix build. [origin]<patches>: Add sipwitch-fix-build-with-exosip5.patch here... * gnu/packages/patches: ...here and... * gnu/local.mk: ...here. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2024-10-15gnu: exosip: Update to 5.3.0. [security fixes]...This fixes CVE-2014-10375. * gnu/packages/telephony.scm (exosip): Update to 5.3.0. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2024-10-15gnu: osip: Update to 5.3.1....* gnu/packages/telephony.scm (osip): Update to 5.3.1. [origin]<patches>: Remove patch. * gnu/packages/patches/osip-CVE-2017-7853.patch : Remove it. * gnu/local.mk: Remove patch. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Nicolas Graves
2024-05-29gnu: pjproject-jami: Update to 2.13.1-2.797f1a3....* gnu/packages/telephony.scm (pjproject-jami): Update to 2.13.1-2.797f1a3. Change-Id: I7a037ee040f5c8ae9b038eada4a33e89559b5332 Maxim Cournoyer