[vlc-commits] access: live555: fix off by one

Francois Cartegnie git at videolan.org
Thu Aug 9 22:09:27 CEST 2018


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Aug  9 22:08:56 2018 +0200| [69ca39de6e56b705cdc7936f78c054e076da3a15] | committer: Francois Cartegnie

access: live555: fix off by one

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=69ca39de6e56b705cdc7936f78c054e076da3a15
---

 modules/access/live555_dtsgen.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/access/live555_dtsgen.h b/modules/access/live555_dtsgen.h
index ea422df0ac..b532db902d 100644
--- a/modules/access/live555_dtsgen.h
+++ b/modules/access/live555_dtsgen.h
@@ -18,7 +18,7 @@
  * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  *****************************************************************************/
 #define DTSGEN_REORDER_MAX   4 /* should be enough */
-#define DTSGEN_HISTORY_COUNT (DTSGEN_REORDER_MAX + 1)
+#define DTSGEN_HISTORY_COUNT (DTSGEN_REORDER_MAX + 2)
 //#define DTSGEN_DEBUG
 
 struct dtsgen_t



More information about the vlc-commits mailing list