-
-
Notifications
You must be signed in to change notification settings - Fork 10.7k
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
Address Sanitize failure in Combo() #8450
Comments
It's surprising because the value passed to that
Regardless of your value for m_location_source / source_id it shouldn't make a difference. Are you 100% sure that the code you have posted here is triggering address sanitizer? |
…eItemByIndex() could incorrectly offset the final cursor. One case where it would manifest was calling Combo() with an out of range index. (#8450)
Interesting while looking at your issue I discovered an unrelated bug with ImGuiListClipper, which would easily manifest when passing a large out of bound value to |
That's interesting. The mistake is gone. I updated the repository, deleted the cache and everything works without a problem. I'm not sure if it was an ImGui bug, but it was thrown by IMGUI. Only if I close this problem because the bug did not occur again. And no, I did not write issue after the first application failure. This was a repeated application failure on every attempt to run with the |
Version/Branch of Dear ImGui:
docking, commit: 15b96fd
Back-ends:
imgui_impl_opengls3.cpp
Compiler, OS:
Linux Ubuntu 24, g++ (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
Full config/build information:
No response
Details:
Hey.
You have new templates for problems, so hopefully I won't get anything wrong here.
I wanted to check out the bugs in my code but I came across a problem that I do not understand. The Program, when normally used, works without a problem, but when I want to perform some tests with the
fsanitize=address
it crashes.Is there a problem in ImGui?
-std=c++23 -DIMGUI_DEFINE_MATH_OPERATORS=1 -DIMGUI_IMPL_OPENGL_ES2=1 -fsanitize=address
-lGLESv2 -lGL -lglfw -ldl -lasan
$ LD_PRELOAD=libasan.so.8 ./serviceLocation_gui
Screenshots/Video:
Minimal, Complete and Verifiable Example code:
header -> define vars:
source -> function
draw()
:The text was updated successfully, but these errors were encountered: