From d3c71c500225e3ad8ac9927f51f65ea0300d7558 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Reimar=20D=C3=B6ffinger?= <Reimar.Doeffinger@gmx.de>
Date: Sun, 15 Jan 2006 21:33:06 +0000
Subject: [PATCH] 10l, get_byte returning 0 on error can cause a hang. So let's
 try with 1 instead...

Originally committed as revision 4862 to svn://svn.ffmpeg.org/ffmpeg/trunk
---
 libavcodec/lzo.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavcodec/lzo.c b/libavcodec/lzo.c
index ab7766b5752..08efcdcc317 100644
--- a/libavcodec/lzo.c
+++ b/libavcodec/lzo.c
@@ -34,7 +34,7 @@ static inline int get_byte(LZOContext *c) {
     if (c->in < c->in_end)
         return *c->in++;
     c->error |= LZO_INPUT_DEPLETED;
-    return 0;
+    return 1;
 }
 
 /**
-- 
GitLab