Displaying 1 result from an estimated 1 matches for "old_sect".
Did you mean:
  old_set
  
2000 Oct 26
1
ogg123 does not stop at the end of the file
...ying to read past the end of the file.
Please apply the following patch to ogg123.c in vorbis-tools:
--- vorbis-tools/ogg123/ogg123.c.orig	Thu Oct 26 22:37:05 2000
+++ vorbis-tools/ogg123/ogg123.c	Thu Oct 26 22:37:29 2000
@@ -461,9 +461,9 @@
                 while (!eos) {
                         old_section = current_section;
                         switch ((ret = ov_read (&vf, convbuffer, sizeof (convbuffer), is_big_endian, 2, 1, ¤t_section))) {
                         case 0: /* End of file */
-				eof = 1;
+				eof = eos = 1;
                                 break;...