-
Notifications
You must be signed in to change notification settings - Fork 42
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
setConsoleTitle
strings
#50
Comments
Looks 👍 if it's not a false positive. Submit a PR. |
I just checked and I think it is a false positive, sorry. |
It did seem to be :P |
@MangaD It could be that whatever you're passing as |
@kirbyfan64 I am inclined to believe that it is related with libstdc++ not being compiled with memory sanitizer, not sure though. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is a problem with the
setConsoleTitle
function. It usesconst char *
as string parameter for the print function when compiling with C++. This seems to be a problem because when compiling with clang++ and with the flag-fsanitizer=memory
, I just get a warning about uninitialized value at the line:RLUTIL_PRINT(true_title);
So, I'd advise to change the code of that function to:
The text was updated successfully, but these errors were encountered: