From 84fac13ad1855c294e0300e8085829cb69c49120 Mon Sep 17 00:00:00 2001 From: mosu Date: Mon, 13 Jan 2003 10:07:38 +0000 Subject: bunkus: fixed a small bug with skipping "{...}" in ssa subs git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8941 b3059339-0415-0410-9bf9-f77b7e298cf2 --- subreader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'subreader.c') diff --git a/subreader.c b/subreader.c index 43192cce83..5ea73609aa 100644 --- a/subreader.c +++ b/subreader.c @@ -454,7 +454,7 @@ subtitle *sub_read_line_ssa(FILE *fd,subtitle *current) { so=de=line2; while (*so) { if(*so == '{') { - for (; *so && *so!='}'; *so++); + for (; *so && *so!='}'; so++); if(*so) so++; } if(*so) { -- cgit v1.2.3