diff --git a/ffplay.c b/ffplay.c
index d45cce3ed1a148ca7bc9ad84863cf1587dfa1b05..8c34a22355319d4fac6c3eae371d23aac1a5f68f 100644
--- a/ffplay.c
+++ b/ffplay.c
@@ -2575,7 +2575,7 @@ static int decode_thread(void *arg)
         if (ret < 0) {
             if (ret == AVERROR_EOF || url_feof(ic->pb))
                 eof=1;
-            if (ic->pb->error)
+            if (ic->pb && ic->pb->error)
                 break;
             SDL_Delay(100); /* wait for user event */
             continue;