[matroska] r769 - trunk/DvdMenuXtractor
| Newsgroups | gmane.comp.multimedia.matroska.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: robux4 Date: 2004-09-09 12:58:31 +0400 (Thu, 09 Sep 2004) New Revision: 769 Modified: trunk/DvdMenuXtractor/base64.cpp Log: fix a bug in the base64 encoding Modified: trunk/DvdMenuXtractor/base64.cpp =================================================================== --- trunk/DvdMenuXtractor/base64.cpp 2004-09-08 20:43:04 UTC (rev 768) +++ trunk/DvdMenuXtractor/base64.cpp 2004-09-09 08:58:31 UTC (rev 769) @@ -37,6 +37,7 @@ _len = (size < 3)?size:3; encodeblock(buffer, _out, _len); size -= _len; + buffer += _len; result += _out; }