Commit 3bd510a4 authored by Nick Kralevich's avatar Nick Kralevich Committed by Android Git Automerger
Browse files

am 9c7ba30e: am 0fec2aef: Merge "Fix vorbis decoding error."

* commit '9c7ba30e':
  Fix vorbis decoding error.
parents 6c406ff4 9c7ba30e
......@@ -226,8 +226,8 @@ long oggpack_look(oggpack_buffer *b,int bits){
unsigned char *ptr=b->headptr;
ogg_reference *head=b->head;
if(end<0)return -1;
if (!head || !end)return -1;
if(end<0)return 0;
if (!head || !end)return 0;
if(bits){
_lookspan();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment