Your message dated Sat, 27 May 2017 09:53:24 +0000 with message-id <E1dEYPU-0002Ml-IO@respighi.debian.org> and subject line unblock cubemap has caused the Debian Bug report #863465, regarding unblock: cubemap/1.3.2-1 to be marked as done. This means that you claim that the problem has been dealt with. If this is not the case it is now your responsibility to reopen the Bug report if necessary, and/or fix the problem forthwith. (NB: If you are a system administrator and have no idea what this message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org immediately.) -- 863465: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=863465 Debian Bug Tracking System Contact owner@bugs.debian.org with problems
--- Begin Message ---
- To: submit@bugs.debian.org
- Subject: unblock: cubemap/1.3.2-1
- From: Philipp Kern <pkern@debian.org>
- Date: Sat, 27 May 2017 11:45:23 +0200
- Message-id: <[🔎] c63124a1-8df3-e6d2-0f12-298d9637bbed@debian.org>
Package: release.debian.org User: release.debian.org@packages.debian.org Usertags: unblock Severity: normal X-Debbugs-Cc: sesse@debian.org Please unblock package cubemap Sesse found a bug in cubemap that sends the whole video backlog to the client on connect in case the stream is unaptly named (i.e. seven characters long). The fix is straightforward as depicted below and the new release only contains the one-line fix. This is the full debdiff: > diff -Nru cubemap-1.3.1/debian/changelog cubemap-1.3.2/debian/changelog > --- cubemap-1.3.1/debian/changelog 2016-12-13 21:25:07.000000000 +0100 > +++ cubemap-1.3.2/debian/changelog 2017-05-27 11:17:45.000000000 +0200 > @@ -1,3 +1,9 @@ > +cubemap (1.3.2-1) unstable; urgency=medium > + > + * New upstream release (Closes: #863280) > + > + -- Philipp Kern <pkern@debian.org> Sat, 27 May 2017 11:17:45 +0200 > + > cubemap (1.3.1-3) unstable; urgency=medium > > * Create the cubemap user before debhelper tries to start the service. > diff -Nru cubemap-1.3.1/NEWS cubemap-1.3.2/NEWS > --- cubemap-1.3.1/NEWS 2016-07-23 00:45:08.000000000 +0200 > +++ cubemap-1.3.2/NEWS 2017-05-24 21:28:51.000000000 +0200 > @@ -1,3 +1,12 @@ > +Cubemap 1.3.2, 2017-05-24 > + > + * Fix a bug where streams with paths exactly seven characters long > + (e.g. “/abc.ts”) would get broken buffering behavior, as they would > + start at the start of the backlog, not the end as they should. > + This caused massively increased latency and/or problems playing back > + the streams properly. > + > + > Cubemap 1.3.1, 2016-07-23 > > * Support Metacube timestamp blocks. This allows Metacube producers > diff -Nru cubemap-1.3.1/server.cpp cubemap-1.3.2/server.cpp > --- cubemap-1.3.1/server.cpp 2016-07-23 00:45:08.000000000 +0200 > +++ cubemap-1.3.2/server.cpp 2017-05-24 21:28:51.000000000 +0200 > @@ -653,7 +653,7 @@ > > string url = request_tokens[1]; > client->url = url; > - if (url.find("?backlog") == url.size() - 8) { > + if (url.size() > 8 && url.find("?backlog") == url.size() - 8) { > client->stream_pos = -2; > url = url.substr(0, url.size() - 8); > } else { > diff -Nru cubemap-1.3.1/version.h cubemap-1.3.2/version.h > --- cubemap-1.3.1/version.h 2016-07-23 00:45:08.000000000 +0200 > +++ cubemap-1.3.2/version.h 2017-05-24 21:28:51.000000000 +0200 > @@ -3,7 +3,7 @@ > > // Version number. Don't expect this to change all that often. > > -#define SERVER_VERSION "1.3.1" > +#define SERVER_VERSION "1.3.2" > #define SERVER_IDENTIFICATION "Cubemap/" SERVER_VERSION > > #endif // !defined(_VERSION_H) unblock cubemap/1.3.2-1Attachment: signature.asc
Description: OpenPGP digital signature
--- End Message ---
--- Begin Message ---
- To: 863465-done@bugs.debian.org
- Subject: unblock cubemap
- From: Ivo De Decker <ivodd@respighi.debian.org>
- Date: Sat, 27 May 2017 09:53:24 +0000
- Message-id: <E1dEYPU-0002Ml-IO@respighi.debian.org>
Unblocked cubemap.
--- End Message ---