This website works better with JavaScript.
Home
Explore
Help
Sign In
jmg
/
pymeds
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
if we can't read anymore, return..
[git-p4: depot-paths = "//depot/": change = 919]
replace/b43bf02ddeddd088c0e6b94974ca1a46562eb3db
John-Mark Gurney
18 years ago
parent
9d67433943
commit
0e98eb436a
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
mpegts/mpegts.py
+ 4
- 1
mpegts/mpegts.py
View File
@@ -1201,7 +1201,10 @@ class TSPStream:
buf = buf[start + 1:]
continue
except IndexError:
buf += self.f.read(READBLK)
nbuf = self.f.read(READBLK)
if not nbuf:
return
buf += nbuf
continue
Write
Preview
Loading…
Cancel
Save