diff --git a/libavcodec/h264.c b/libavcodec/h264.c
index 99cf5dc9f39b1db876fa214f54d662f94f6903e0..5de7f104ca4ab0875244a2fe33fb79d46249f3c5 100644
--- a/libavcodec/h264.c
+++ b/libavcodec/h264.c
@@ -3694,8 +3694,10 @@ static int decode_nal_units(H264Context *h, const uint8_t *buf, int buf_size)
                         buf[buf_index + 2] == 1)
                         break;
 
-                if (buf_index + 3 >= buf_size)
+                if (buf_index + 3 >= buf_size) {
+                    buf_index = buf_size;
                     break;
+                }
 
                 buf_index += 3;
                 if (buf_index >= next_avc)