Skip to content

Commit

Permalink
fixed #2589
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanlf committed Sep 5, 2023
1 parent d0be4f4 commit d553698
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scene_manager/loader_bt.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,12 +447,12 @@ char *gf_bt_get_next(GF_BTParser *parser, Bool point_break)
i=0;
has_quote = 0;
while (go) {
if (parser->line_pos+i>=parser->line_size) break;

if (parser->line_buffer[parser->line_pos + i] == '\"') {
if (!has_quote) has_quote = 1;
else has_quote = 0;
parser->line_pos += 1;

if (parser->line_pos+i==parser->line_size) break;
continue;
}
if (!has_quote) {
Expand Down

0 comments on commit d553698

Please sign in to comment.