Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix bug in lstrip parser
  • Loading branch information
erlend-aasland committed Jun 8, 2022
commit bf0e150c483832b77e45d0794460aca3a1822274
3 changes: 3 additions & 0 deletions Modules/_sqlite/statement.c
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,9 @@ lstrip_sql(const char *sql)
break;
case ' ':
case '\t':
if (state == COMMENTEND_1) {
state = IN_COMMENT;
}
break;
case '\n':
case 13:
Comment thread
erlend-aasland marked this conversation as resolved.
Outdated
Expand Down