Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix string literal parsing when \\ is on the end, closes #301 #303

Merged

Conversation

filipsajdak
Copy link
Contributor

The issue is that when there is '\' on the end of the string expand_string_literal() function goes out of string range because for loop has a check

pos < length && (text[pos] != '"' || text[pos-1] == '\\')

that is true when '\' is before last '"' character that cause loop to go beyond it and cause assertion to fail.

The current change adds a check if the '' character before last '"' is not escaped by the former '' character.

Closes #301 - all regression tests pass

The issue is that when there is '\\' on the end of the string
`expand_string_literal()` function goes out of string range
because for loop has a check
```cpp
pos < length && (text[pos] != '"' || text[pos-1] == '\\')
```
that is true when '\\' is before last '"' character that cause
loop to go beyond it and cause assertion to fail.

The current change adds a check if the '\' character before last '"'
is not escaped by the former '\' character.
@hsutter
Copy link
Owner

hsutter commented Mar 28, 2023

Looks good, thanks!

@hsutter hsutter merged commit b370ab8 into hsutter:main Mar 28, 2023
@filipsajdak filipsajdak deleted the fsajdak-fix-string-literal-parsing branch March 28, 2023 23:45
@filipsajdak
Copy link
Contributor Author

I start to become a cppfront string specialist 😉

@hsutter
Copy link
Owner

hsutter commented Mar 29, 2023

At this point you've probably written as much of the string literal handling as I have, maybe more. 😁 🙏

zaucy pushed a commit to zaucy/cppfront that referenced this pull request Dec 5, 2023
The issue is that when there is '\\' on the end of the string
`expand_string_literal()` function goes out of string range
because for loop has a check
```cpp
pos < length && (text[pos] != '"' || text[pos-1] == '\\')
```
that is true when '\\' is before last '"' character that cause
loop to go beyond it and cause assertion to fail.

The current change adds a check if the '\' character before last '"'
is not escaped by the former '\' character.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[BUG] Back-slash before capture doesn't work in string literals
2 participants