summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--subreader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/subreader.c b/subreader.c
index 03db411b02..8bd5419d17 100644
--- a/subreader.c
+++ b/subreader.c
@@ -747,7 +747,7 @@ static subtitle *sub_read_line_aqt(stream_t *st,subtitle *current) {
}
current->lines=i+1;
- if ((current->text[0]=="") && (current->text[1]=="")) {
+ if (!strlen(current->text[0]) && !strlen(current->text[1])) {
#ifdef USE_SORTSUB
previous_sub_end = 0;
#else
@@ -803,7 +803,7 @@ static subtitle *sub_read_line_subrip09(stream_t *st,subtitle *current) {
}
current->lines=i+1;
- if ((current->text[0]=="") && (i==0)) {
+ if (!strlen(current->text[0]) && (i==0)) {
#ifdef USE_SORTSUB
previous_sub_end = 0;
#else