-
Notifications
You must be signed in to change notification settings - Fork 77
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
Add QPainterPath autotest #919
base: main
Are you sure you want to change the base?
Conversation
For me it's a mem leak in qt no ? |
That's not necessarily a leak in Qt. While this means that the memory was allocated by Qt internally, the question is more why it wasn't deleted. We've encountered similar issues before, where certain types were not quite compatible with the way CXX moves data around. I think that was with QTimeZone, but I unfortunately can't find our discussion on that. |
|
So it seems there are indeed more constructor (9) than destructor (6) calls. That's likely caused by CXX "forgetting" an instance, which we've encountered before. |
No description provided.