ASAN reports memory leak in libnvidia-glcore.so.515.57

A simple SDL2 program triggers a memory leak:

#include <SDL2/SDL.h>

#include <cstdio>
#include <memory>
#include <cstdlib>

int main() {
    if (std::atexit(SDL_Quit)) {
        printf("Registration failed\n");
        return 1;
    }

    if (SDL_Init(SDL_INIT_VIDEO) < 0) {
        printf("SDL_Init error: %s", SDL_GetError());
        std::exit(1);
    }

    auto free_window = [](SDL_Window* w) { SDL_DestroyWindow(w); };
    std::unique_ptr<SDL_Window, decltype(free_window)> window{
        SDL_CreateWindow("test window", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 400, 400,
                         0),
        std::move(free_window)};
    if (!window) {
        printf("SDL_CreateWindow error: %s", SDL_GetError());
        std::exit(1);
    }

    auto free_surface = [](SDL_Surface* s) { SDL_FreeSurface(s); };
    std::unique_ptr<SDL_Surface, decltype(free_surface)> surface{SDL_GetWindowSurface(window.get()),
                                                                 std::move(free_surface)};
    if (!surface) {
        printf("SDL_GetWindowSurface error: %s", SDL_GetError());
        std::exit(1);
    }

    SDL_memset(surface->pixels, 0, surface->h * surface->pitch);

    while (true) {
        SDL_Event event;
        while (SDL_PollEvent(&event)) {
            if (event.type == SDL_QUIT) {
                std::exit(0);
            }
        }

        auto* pixels = reinterpret_cast<unsigned*>(surface->pixels);
        for (int y = 0; y != 400; ++y) {
            for (int x = 0; x != 400; ++x) {
                pixels[y * 400 + x] = SDL_MapRGB(surface->format, 255, 255, 255);
            }
        }

        SDL_UpdateWindowSurface(window.get());
    }
}

Build:

g++ leak.cc -isystem /usr/include/SDL2 -fsanitize=address -o leak /usr/lib/libSDL2.so

ASAN output:


=================================================================
==46550==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 6280 byte(s) in 3 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd0858ba06f  (/usr/lib/libnvidia-glcore.so.515.57+0xeba06f)

Direct leak of 1024 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd0858b951a  (/usr/lib/libnvidia-glcore.so.515.57+0xeb951a)

Direct leak of 520 byte(s) in 13 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0c2876  (<unknown module>)

Direct leak of 368 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0b11e0  (/usr/lib/libasan.so.8.0.0+0x7d11e0)

Direct leak of 112 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0be120  (<unknown module>)

Direct leak of 96 byte(s) in 3 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0beed5  (<unknown module>)

Direct leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0bf348  (<unknown module>)

Direct leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0c6b00  (<unknown module>)

Direct leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd08a0b765a  (/usr/lib/libasan.so.8.0.0+0x7d765a)

Indirect leak of 144448 byte(s) in 453 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd0858ba06f  (/usr/lib/libnvidia-glcore.so.515.57+0xeba06f)

Indirect leak of 7989 byte(s) in 18 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd08a0befd5  (<unknown module>)

Indirect leak of 4930 byte(s) in 374 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd0858b9bdc  (/usr/lib/libnvidia-glcore.so.515.57+0xeb9bdc)

Indirect leak of 1596 byte(s) in 3 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0bf595  (<unknown module>)

Indirect leak of 920 byte(s) in 5 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0b11e0  (/usr/lib/libasan.so.8.0.0+0x7d11e0)

Indirect leak of 752 byte(s) in 6 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd0858b951a  (/usr/lib/libnvidia-glcore.so.515.57+0xeb951a)

Indirect leak of 288 byte(s) in 4 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a09bc12  (/usr/lib/libasan.so.8.0.0+0x7bbc12)

Indirect leak of 264 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a18da  (/usr/lib/libasan.so.8.0.0+0x7c18da)

Indirect leak of 240 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0c889c  (<unknown module>)
    #2 0x7ffffffff  (<unknown module>)

Indirect leak of 232 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0bc8ee  (<unknown module>)

Indirect leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0b11e0  (/usr/lib/libasan.so.8.0.0+0x7d11e0)
    #2 0xd00000004  (<unknown module>)

Indirect leak of 176 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0b6b70  (/usr/lib/libasan.so.8.0.0+0x7d6b70)

Indirect leak of 160 byte(s) in 4 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0c2876  (<unknown module>)

Indirect leak of 152 byte(s) in 7 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0bfc08  (<unknown module>)

Indirect leak of 128 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0b564d  (/usr/lib/libasan.so.8.0.0+0x7d564d)

Indirect leak of 112 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0be120  (<unknown module>)

Indirect leak of 96 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a9055  (/usr/lib/libasan.so.8.0.0+0x7c9055)

Indirect leak of 96 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0b6c57  (/usr/lib/libasan.so.8.0.0+0x7d6c57)

Indirect leak of 80 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0bf348  (<unknown module>)

Indirect leak of 80 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0b6bf2  (/usr/lib/libasan.so.8.0.0+0x7d6bf2)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd08a0a9141  (/usr/lib/libasan.so.8.0.0+0x7c9141)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0c3b80  (<unknown module>)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a188a  (/usr/lib/libasan.so.8.0.0+0x7c188a)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a18a1  (/usr/lib/libasan.so.8.0.0+0x7c18a1)

Indirect leak of 48 byte(s) in 2 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0c6b00  (<unknown module>)

Indirect leak of 38 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0c002e  (<unknown module>)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a1282  (/usr/lib/libasan.so.8.0.0+0x7c1282)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bf411 in __interceptor_calloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:77
    #1 0x7fd08a0a1b4a  (/usr/lib/libasan.so.8.0.0+0x7c1b4a)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0b6a5c  (/usr/lib/libasan.so.8.0.0+0x7d6a5c)

Indirect leak of 16 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6be7ea in __interceptor_realloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:85
    #1 0x7fd08a0c3eb3  (<unknown module>)

Indirect leak of 7 byte(s) in 1 object(s) allocated from:
    #0 0x7fd08a6bfa89 in __interceptor_malloc /usr/src/debug/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
    #1 0x7fd08a0beed5  (<unknown module>)

SUMMARY: AddressSanitizer: 171800 byte(s) leaked in 928 allocation(s).

How did you solve this issue? I am also running into it. However not with SDL2 but with the new drivers via CUDA.

EDIT: To clarify I’m still talking about the 515 drivers and not the 520.
And furthermore I’m only seeing the “unknown-module” leaks. But these “leaks” have only occured after upgrading the drivers. After having read around a bit, im assuming the issue has to do with shared library loading / closing. But I am not really an expert on that matter

@amrits

How did you solve this issue?

I did not. Tried writing an empty-body dlclose, as the internet says. Tried many different writings of library names to blacklist the entries in LSAN. Didn’t work either. So I kinda gave up.

Also I’m not even sure how I can go around the <unknown module>. Even if blacklists in LSAN worked, I still don’t know the library name.

Oh well, good to know that its not just me who have no idea on how to solve it :) And yea, no matter what I try to put in the lsan_suppressions file it will not ignore the unknown modules.

this still happends with nvidia 525.60.11 , also happends when creating a simple vulkan and/or opengl instance.

I am able to reproduce issue on my local setup and filed a bug 3917145 internally for tracking purpose.
We will debug it now and keep you posted on the same.

This issue is mentioned as fixed in the beta driver - 535.43.02

@C0rn3j I’ll keep the update in mind but hopefully what @gulafaran said about Vulkan wasn’t ignored

It made it to stable today (535.54.03) Linux x64 (AMD64/EM64T) Display Driver | 535.54.03 | Linux 64-bit | NVIDIA so it should be easy to test.

OP here.

I re-ran this example on Fedora 39, X11, xorg-x11-drv-nvidia 545.29.06.

Here is the output:


=================================================================
==81543==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 2464 byte(s) in 44 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7eabfe500d  (/lib64/libnvidia-glcore.so.545.29.06+0x9e500d) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Direct leak of 520 byte(s) in 13 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84da4b  (<unknown module>)
    #2 0x7f7ebd8416f4  (/usr/lib64/libasan.so.8.0.0+0x106f4)
    #3 0x7f7ebe3564f3 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c4f3) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #5 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #6 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #8 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83db2d  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83db2d  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Direct leak of 112 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a1e1  (/usr/lib64/libasan.so.8.0.0+0x191e1)
    #2 0x7f7ebd82e21f  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Direct leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a179  (/usr/lib64/libasan.so.8.0.0+0x19179)
    #2 0x7f7ebd851256  (<unknown module>)
    #3 0x7f7ebd8512d7  (<unknown module>)
    #4 0x7f7ebd851344  (<unknown module>)
    #5 0x7f7ebd826a28  (<unknown module>)
    #6 0x7f7ebd82dfed  (<unknown module>)
    #7 0x7f7ebd82f4b0  (<unknown module>)
    #8 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #9 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #10 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #11 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #12 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #13 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 38 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849d53  (/usr/lib64/libasan.so.8.0.0+0x18d53)
    #2 0x7f7ebd82f699  (<unknown module>)
    #3 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #5 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #6 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #8 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 29 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849d53  (/usr/lib64/libasan.so.8.0.0+0x18d53)
    #2 0x7f7ebd82f8a7  (<unknown module>)
    #3 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #5 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #6 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #8 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 29 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849d53  (/usr/lib64/libasan.so.8.0.0+0x18d53)
    #2 0x7f7ebd82f86a  (<unknown module>)
    #3 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #5 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #6 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #8 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Direct leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd851b95  (<unknown module>)
    #2 0x7f7ebd82e239  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Direct leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd842381  (/usr/lib64/libasan.so.8.0.0+0x11381)
    #2 0x7f7ebd82bb4c  (<unknown module>)
    #3 0x7f7ebd82f150  (<unknown module>)
    #4 0x7f7ebd82f4c7  (<unknown module>)
    #5 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #6 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #7 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #8 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #9 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #10 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 4224 byte(s) in 44 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7eabfe500d  (/lib64/libnvidia-glcore.so.545.29.06+0x9e500d) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 2089 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd83dcda  (<unknown module>)
    #5 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #6 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #7 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #8 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #9 0x7f7ebd82d151  (<unknown module>)
    #10 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #11 0x7f7ebd82ef5d  (<unknown module>)
    #12 0x7f7eac06ddab  (/lib64/libnvidia-glcore.so.545.29.06+0xa6ddab) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 2056 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84b08c  (/usr/lib64/libasan.so.8.0.0+0x1a08c)
    #2 0x7f7ebd84cebb  (<unknown module>)
    #3 0x7f7ebd846d91  (/usr/lib64/libasan.so.8.0.0+0x15d91)
    #4 0x7f7ebd847f51  (/usr/lib64/libasan.so.8.0.0+0x16f51)
    #5 0x7f7ebd82d151  (<unknown module>)
    #6 0x7f7ebd841d93  (/usr/lib64/libasan.so.8.0.0+0x10d93)
    #7 0x7f7ebd82ef5d  (<unknown module>)
    #8 0x7f7ebd82f1fb  (<unknown module>)
    #9 0x7f7ebd82f4c7  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 2024 byte(s) in 94 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7eabfe4d51  (/lib64/libnvidia-glcore.so.545.29.06+0x9e4d51) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 788 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a4ac  (/usr/lib64/libasan.so.8.0.0+0x194ac)
    #2 0x7f7ebd851221  (<unknown module>)
    #3 0x7f7ebd82c3c8  (<unknown module>)
    #4 0x7f7ebd82eda9  (<unknown module>)
    #5 0x7f7ebd82ef43  (<unknown module>)
    #6 0x7f7ebd82f1fb  (<unknown module>)
    #7 0x7f7ebd82f4c7  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 404 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a4ac  (/usr/lib64/libasan.so.8.0.0+0x194ac)
    #2 0x7f7ebd84a9d4  (/usr/lib64/libasan.so.8.0.0+0x199d4)
    #3 0x7f7ebd84aad0  (/usr/lib64/libasan.so.8.0.0+0x19ad0)
    #4 0x7f7ebd849627  (/usr/lib64/libasan.so.8.0.0+0x18627)
    #5 0x7f7ebd82ec6d  (<unknown module>)
    #6 0x7f7ebd82ef43  (<unknown module>)
    #7 0x7f7ebd82f1fb  (<unknown module>)
    #8 0x7f7ebd82f4c7  (<unknown module>)
    #9 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 404 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a4ac  (/usr/lib64/libasan.so.8.0.0+0x194ac)
    #2 0x7f7ebd85126a  (<unknown module>)
    #3 0x7f7ebd8512d7  (<unknown module>)
    #4 0x7f7ebd851344  (<unknown module>)
    #5 0x7f7ebd826a28  (<unknown module>)
    #6 0x7f7ebd82dfed  (<unknown module>)
    #7 0x7f7ebd82f4b0  (<unknown module>)
    #8 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #9 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #10 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #11 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #12 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #13 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 368 byte(s) in 2 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83db2d  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356544 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c544) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 352 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84b08c  (/usr/lib64/libasan.so.8.0.0+0x1a08c)
    #2 0x7f7ebd8384d3  (<unknown module>)
    #3 0x7f7ebd838881  (<unknown module>)
    #4 0x7f7ebd838c9a  (<unknown module>)
    #5 0x7f7ebd83919c  (<unknown module>)
    #6 0x7f7ebd839313  (<unknown module>)
    #7 0x7f7ebd83c384  (<unknown module>)
    #8 0x7f7ebd83d7b7  (<unknown module>)
    #9 0x7f7ebe353956 in SDL_DBus_CallMethodInternal (/lib64/libSDL2-2.0.so.0+0x129956) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #10 0x7f7ebe353b6a in SDL_DBus_CallMethod (/lib64/libSDL2-2.0.so.0+0x129b6a) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #11 0x7f7ebe35a343 in SDL_DBus_ScreensaverInhibit (/lib64/libSDL2-2.0.so.0+0x130343) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #12 0x7f7ebe32e162 in X11_SuspendScreenSaver (/lib64/libSDL2-2.0.so.0+0x104162) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe303959 in SDL_VideoInit_REAL (/lib64/libSDL2-2.0.so.0+0xd9959) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x7f7ebe25adb8 in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30db8) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #15 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #16 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #18 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 352 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84b08c  (/usr/lib64/libasan.so.8.0.0+0x1a08c)
    #2 0x7f7ebd84f25e  (<unknown module>)
    #3 0x7f7ebd838881  (<unknown module>)
    #4 0x7f7ebd838be9  (<unknown module>)
    #5 0x7f7ebd83919c  (<unknown module>)
    #6 0x7f7ebd839313  (<unknown module>)
    #7 0x7f7ebd83c384  (<unknown module>)
    #8 0x7f7ebd83d7b7  (<unknown module>)
    #9 0x7f7ebe351c25 in SDL_DBus_CallVoidMethodInternal (/lib64/libSDL2-2.0.so.0+0x127c25) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #10 0x7f7ebe353cca in SDL_DBus_CallVoidMethod (/lib64/libSDL2-2.0.so.0+0x129cca) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #11 0x7f7ebe359fe9 in SDL_DBus_ScreensaverInhibit (/lib64/libSDL2-2.0.so.0+0x12ffe9) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #12 0x7f7ebe32e162 in X11_SuspendScreenSaver (/lib64/libSDL2-2.0.so.0+0x104162) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe310e22 in SDL_VideoQuit_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0xe6e22) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x7f7ebe259e64 in SDL_QuitSubSystem_REAL (/lib64/libSDL2-2.0.so.0+0x2fe64) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #15 0x7f7ebe25a3e8 in SDL_Quit_REAL (/lib64/libSDL2-2.0.so.0+0x303e8) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #16 0x7f7ebdc5efd5 in __run_exit_handlers (/lib64/libc.so.6+0x40fd5) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x7f7ebdc5f11d in __GI_exit /usr/src/debug/glibc-2.38-14.fc39.x86_64/stdlib/exit.c:141
    #18 0x40165d in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x40165d) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #19 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #20 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #21 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 264 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd82c519  (<unknown module>)
    #2 0x7f7ebd82e065  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 256 byte(s) in 2 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd852fe6  (<unknown module>)
    #5 0x7f7ebd83db71  (<unknown module>)
    #6 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #7 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #8 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #9 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #10 0x7f7ebd82d151  (<unknown module>)
    #11 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #12 0x7f7ebd82ef5d  (<unknown module>)
    #13 0x7f7ebd82f1fb  (<unknown module>)
    #14 0x7f7ebd82f4c7  (<unknown module>)
    #15 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 240 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd85390e  (<unknown module>)
    #2 0x7f7ebd828ae2  (<unknown module>)
    #3 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #4 0x7f7ebd850387  (<unknown module>)
    #5 0x7f7ebd85269d  (<unknown module>)
    #6 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #7 0x7f7ebd82e04d  (<unknown module>)
    #8 0x7f7ebd82f572  (<unknown module>)
    #9 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 232 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd847ff2  (/usr/lib64/libasan.so.8.0.0+0x16ff2)
    #2 0x7f7ebd850387  (<unknown module>)
    #3 0x7f7ebd85269d  (<unknown module>)
    #4 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #5 0x7f7ebd82e04d  (<unknown module>)
    #6 0x7f7ebd82f572  (<unknown module>)
    #7 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 223 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd84de56  (<unknown module>)
    #5 0x7f7ebd838a63  (<unknown module>)
    #6 0x7f7ebd83c379  (<unknown module>)
    #7 0x7f7ebd83cf20  (<unknown module>)
    #8 0x7f7ebd82eb7c  (<unknown module>)
    #9 0x7f7ebd82ef43  (<unknown module>)
    #10 0x7f7eac06ddab  (/lib64/libnvidia-glcore.so.545.29.06+0xa6ddab) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 223 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd84de56  (<unknown module>)
    #5 0x7f7ebd838a63  (<unknown module>)
    #6 0x7f7ebd83c379  (<unknown module>)
    #7 0x7f7ebd83cf20  (<unknown module>)
    #8 0x7f7ebd82eb7c  (<unknown module>)
    #9 0x7f7ebd82ef43  (<unknown module>)
    #10 0x7f7ebe353971 in SDL_DBus_CallMethodInternal (/lib64/libSDL2-2.0.so.0+0x129971) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #11 0x7f7ebe353b6a in SDL_DBus_CallMethod (/lib64/libSDL2-2.0.so.0+0x129b6a) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #12 0x7f7ebe35a343 in SDL_DBus_ScreensaverInhibit (/lib64/libSDL2-2.0.so.0+0x130343) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe32e162 in X11_SuspendScreenSaver (/lib64/libSDL2-2.0.so.0+0x104162) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x7f7ebe303959 in SDL_VideoInit_REAL (/lib64/libSDL2-2.0.so.0+0xd9959) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #15 0x7f7ebe25adb8 in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30db8) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #16 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #17 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #18 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #19 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 223 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd84de56  (<unknown module>)
    #5 0x7f7ebd838a63  (<unknown module>)
    #6 0x7f7ebd83c379  (<unknown module>)
    #7 0x7f7ebd83cf20  (<unknown module>)
    #8 0x7f7ebd82eb7c  (<unknown module>)
    #9 0x7f7ebd82ef43  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356544 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c544) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 223 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd84de56  (<unknown module>)
    #5 0x7f7ebd838a63  (<unknown module>)
    #6 0x7f7ebd83c379  (<unknown module>)
    #7 0x7f7ebd83cf20  (<unknown module>)
    #8 0x7f7ebd82eb7c  (<unknown module>)
    #9 0x7f7ebd82ef43  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83c9b4  (<unknown module>)
    #3 0x7f7ebd82f1dc  (<unknown module>)
    #4 0x7f7ebd82f4c7  (<unknown module>)
    #5 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #6 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #7 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #8 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #9 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #10 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83cea3  (<unknown module>)
    #3 0x7f7ebd82eb7c  (<unknown module>)
    #4 0x7f7ebd82ef43  (<unknown module>)
    #5 0x7f7ebd82f1fb  (<unknown module>)
    #6 0x7f7ebd82f4c7  (<unknown module>)
    #7 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #8 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #9 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #10 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #11 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #12 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83db2d  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 184 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83bb9f  (<unknown module>)
    #2 0x7f7ebd83db2d  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 168 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd852fe6  (<unknown module>)
    #5 0x7f7ebd83db71  (<unknown module>)
    #6 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #7 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #8 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #9 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #10 0x7f7ebd82d151  (<unknown module>)
    #11 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #12 0x7f7ebd82ef5d  (<unknown module>)
    #13 0x7f7ebd82f1fb  (<unknown module>)
    #14 0x7f7ebd82f4c7  (<unknown module>)
    #15 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #16 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #17 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #18 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #19 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #20 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 168 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd852fe6  (<unknown module>)
    #5 0x7f7ebd83db71  (<unknown module>)
    #6 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #7 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #8 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #9 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #10 0x7f7ebd82d151  (<unknown module>)
    #11 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #12 0x7f7ebd82ef5d  (<unknown module>)
    #13 0x7f7ebd82f1fb  (<unknown module>)
    #14 0x7f7ebd82f4c7  (<unknown module>)
    #15 0x7f7ebe356544 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c544) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #16 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #17 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #18 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #19 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #20 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 160 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b93b  (/usr/lib64/libasan.so.8.0.0+0x1a93b)
    #4 0x7f7ebd84de56  (<unknown module>)
    #5 0x7f7ebd838a63  (<unknown module>)
    #6 0x7f7ebd838cb7  (<unknown module>)
    #7 0x7f7ebd8537d1  (<unknown module>)
    #8 0x7f7ebd83c9dc  (<unknown module>)
    #9 0x7f7ebd82f1dc  (<unknown module>)
    #10 0x7f7ebd82f4c7  (<unknown module>)
    #11 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #12 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #14 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #15 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 160 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84b08c  (/usr/lib64/libasan.so.8.0.0+0x1a08c)
    #2 0x7f7ebd84f25e  (<unknown module>)
    #3 0x7f7ebd838881  (<unknown module>)
    #4 0x7f7ebd838be9  (<unknown module>)
    #5 0x7f7ebd83919c  (<unknown module>)
    #6 0x7f7ebd839227  (<unknown module>)
    #7 0x7f7ebd83cef3  (<unknown module>)
    #8 0x7f7ebd82eb7c  (<unknown module>)
    #9 0x7f7ebd82ef43  (<unknown module>)
    #10 0x7f7ebd82f1fb  (<unknown module>)
    #11 0x7f7ebd82f4c7  (<unknown module>)
    #12 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #13 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #15 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #16 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 112 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a1e1  (/usr/lib64/libasan.so.8.0.0+0x191e1)
    #2 0x7f7ebd82c502  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 96 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd834524  (<unknown module>)
    #2 0x7f7ebd8480a9  (/usr/lib64/libasan.so.8.0.0+0x170a9)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 88 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd841846  (/usr/lib64/libasan.so.8.0.0+0x10846)
    #2 0x7f7ebd8480e4  (/usr/lib64/libasan.so.8.0.0+0x170e4)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 88 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd841846  (/usr/lib64/libasan.so.8.0.0+0x10846)
    #2 0x7f7ebd82c745  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 72 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd826931  (<unknown module>)
    #2 0x7f7ebd8480f9  (/usr/lib64/libasan.so.8.0.0+0x170f9)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 72 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd826931  (<unknown module>)
    #2 0x7f7ebd8539cf  (<unknown module>)
    #3 0x7f7ebd828ae2  (<unknown module>)
    #4 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #5 0x7f7ebd850387  (<unknown module>)
    #6 0x7f7ebd85269d  (<unknown module>)
    #7 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #8 0x7f7ebd82e04d  (<unknown module>)
    #9 0x7f7ebd82f572  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 72 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd826931  (<unknown module>)
    #2 0x7f7ebd8539c1  (<unknown module>)
    #3 0x7f7ebd828ae2  (<unknown module>)
    #4 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #5 0x7f7ebd850387  (<unknown module>)
    #6 0x7f7ebd85269d  (<unknown module>)
    #7 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #8 0x7f7ebd82e04d  (<unknown module>)
    #9 0x7f7ebd82f572  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 72 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd826931  (<unknown module>)
    #2 0x7f7ebd8539b3  (<unknown module>)
    #3 0x7f7ebd828ae2  (<unknown module>)
    #4 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #5 0x7f7ebd850387  (<unknown module>)
    #6 0x7f7ebd85269d  (<unknown module>)
    #7 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #8 0x7f7ebd82e04d  (<unknown module>)
    #9 0x7f7ebd82f572  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd833790  (<unknown module>)
    #2 0x7f7ebd847b23  (/usr/lib64/libasan.so.8.0.0+0x16b23)
    #3 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #4 0x7f7ebd82d151  (<unknown module>)
    #5 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #6 0x7f7ebd82ef5d  (<unknown module>)
    #7 0x7f7ebd82f1fb  (<unknown module>)
    #8 0x7f7ebd82f4c7  (<unknown module>)
    #9 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b7df  (/usr/lib64/libasan.so.8.0.0+0x1a7df)
    #4 0x7f7ebd828926  (<unknown module>)
    #5 0x7f7ebd828e3b  (<unknown module>)
    #6 0x7f7ebd8460d8  (/usr/lib64/libasan.so.8.0.0+0x150d8)
    #7 0x7f7ebd846beb  (/usr/lib64/libasan.so.8.0.0+0x15beb)
    #8 0x7f7ebd847f51  (/usr/lib64/libasan.so.8.0.0+0x16f51)
    #9 0x7f7ebd82d151  (<unknown module>)
    #10 0x7f7ebd841d93  (/usr/lib64/libasan.so.8.0.0+0x10d93)
    #11 0x7f7ebd82ef5d  (<unknown module>)
    #12 0x7f7ebd82f1fb  (<unknown module>)
    #13 0x7f7ebd82f4c7  (<unknown module>)
    #14 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84ecd4  (<unknown module>)
    #2 0x7f7ebd82c77d  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83ffd0  (<unknown module>)
    #2 0x7f7ebd848094  (/usr/lib64/libasan.so.8.0.0+0x17094)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 64 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd83ffd0  (<unknown module>)
    #2 0x7f7ebd84806e  (/usr/lib64/libasan.so.8.0.0+0x1706e)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd841939  (/usr/lib64/libasan.so.8.0.0+0x10939)
    #2 0x7f7ebd82c66e  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd841939  (/usr/lib64/libasan.so.8.0.0+0x10939)
    #2 0x7f7ebd82c680  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd82c4cc  (<unknown module>)
    #2 0x7f7ebd82e065  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 48 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd82c4e2  (<unknown module>)
    #2 0x7f7ebd82e065  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd8418c9  (/usr/lib64/libasan.so.8.0.0+0x108c9)
    #2 0x7f7ebd82c65c  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84da4b  (<unknown module>)
    #2 0x7f7ebd82c6f4  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84da4b  (<unknown module>)
    #2 0x7f7ebd84187c  (/usr/lib64/libasan.so.8.0.0+0x1087c)
    #3 0x7f7ebd82c745  (<unknown module>)
    #4 0x7f7ebd82e065  (<unknown module>)
    #5 0x7f7ebd82f572  (<unknown module>)
    #6 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd83bd34  (<unknown module>)
    #3 0x7f7ebd83db2d  (<unknown module>)
    #4 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #5 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #6 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #7 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #8 0x7f7ebd82d151  (<unknown module>)
    #9 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #10 0x7f7ebd82ef5d  (<unknown module>)
    #11 0x7f7ebd82f1fb  (<unknown module>)
    #12 0x7f7ebd82f4c7  (<unknown module>)
    #13 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a179  (/usr/lib64/libasan.so.8.0.0+0x19179)
    #2 0x7f7ebd84a1fc  (/usr/lib64/libasan.so.8.0.0+0x191fc)
    #3 0x7f7ebd82c502  (<unknown module>)
    #4 0x7f7ebd82e065  (<unknown module>)
    #5 0x7f7ebd82f572  (<unknown module>)
    #6 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd83bd34  (<unknown module>)
    #3 0x7f7ebd83db2d  (<unknown module>)
    #4 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #5 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #6 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #7 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #8 0x7f7ebd82d151  (<unknown module>)
    #9 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #10 0x7f7ebd82ef5d  (<unknown module>)
    #11 0x7f7ebd82f1fb  (<unknown module>)
    #12 0x7f7ebd82f4c7  (<unknown module>)
    #13 0x7f7ebe356544 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c544) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #15 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #16 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #18 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd83bd34  (<unknown module>)
    #3 0x7f7ebd83db2d  (<unknown module>)
    #4 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #5 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #6 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #7 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #8 0x7f7ebd82d151  (<unknown module>)
    #9 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #10 0x7f7ebd82ef5d  (<unknown module>)
    #11 0x7f7ebd82f1fb  (<unknown module>)
    #12 0x7f7ebd82f4c7  (<unknown module>)
    #13 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #14 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #15 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #16 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #17 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #18 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84a179  (/usr/lib64/libasan.so.8.0.0+0x19179)
    #2 0x7f7ebd84a1fc  (/usr/lib64/libasan.so.8.0.0+0x191fc)
    #3 0x7f7ebd82e21f  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84da4b  (<unknown module>)
    #2 0x7f7ebd84187c  (/usr/lib64/libasan.so.8.0.0+0x1087c)
    #3 0x7f7ebd8480e4  (/usr/lib64/libasan.so.8.0.0+0x170e4)
    #4 0x7f7ebd850387  (<unknown module>)
    #5 0x7f7ebd85269d  (<unknown module>)
    #6 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #7 0x7f7ebd82e04d  (<unknown module>)
    #8 0x7f7ebd82f572  (<unknown module>)
    #9 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84da4b  (<unknown module>)
    #2 0x7f7ebd82c634  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 40 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd8418c9  (/usr/lib64/libasan.so.8.0.0+0x108c9)
    #2 0x7f7ebd82c64a  (<unknown module>)
    #3 0x7f7ebd82e065  (<unknown module>)
    #4 0x7f7ebd82f572  (<unknown module>)
    #5 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 38 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84af97  (/usr/lib64/libasan.so.8.0.0+0x19f97)
    #2 0x7f7ebd84839a  (/usr/lib64/libasan.so.8.0.0+0x1739a)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 32 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849e35  (/usr/lib64/libasan.so.8.0.0+0x18e35)
    #2 0x7f7ebd849ec4  (/usr/lib64/libasan.so.8.0.0+0x18ec4)
    #3 0x7f7ebd84b7df  (/usr/lib64/libasan.so.8.0.0+0x1a7df)
    #4 0x7f7ebd8271a1  (<unknown module>)
    #5 0x7f7ebd828b26  (<unknown module>)
    #6 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #7 0x7f7ebd850387  (<unknown module>)
    #8 0x7f7ebd85269d  (<unknown module>)
    #9 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #10 0x7f7ebd82e04d  (<unknown module>)
    #11 0x7f7ebd82f572  (<unknown module>)
    #12 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 31 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84b08c  (/usr/lib64/libasan.so.8.0.0+0x1a08c)
    #2 0x7f7ebd84b38f  (/usr/lib64/libasan.so.8.0.0+0x1a38f)
    #3 0x7f7ebd8539aa  (<unknown module>)
    #4 0x7f7ebd828ae2  (<unknown module>)
    #5 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #6 0x7f7ebd850387  (<unknown module>)
    #7 0x7f7ebd85269d  (<unknown module>)
    #8 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #9 0x7f7ebd82e04d  (<unknown module>)
    #10 0x7f7ebd82f572  (<unknown module>)
    #11 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd851b95  (<unknown module>)
    #2 0x7f7ebd83c805  (<unknown module>)
    #3 0x7f7ebd841b2e  (/usr/lib64/libasan.so.8.0.0+0x10b2e)
    #4 0x7f7ebd82ef72  (<unknown module>)
    #5 0x7f7ebd82f1fb  (<unknown module>)
    #6 0x7f7ebd82f4c7  (<unknown module>)
    #7 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #8 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #9 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #10 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #11 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #12 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd851b95  (<unknown module>)
    #2 0x7f7ebd82f46d  (<unknown module>)
    #3 0x7f7ebe356513 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c513) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #5 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #6 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #8 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd841722  (/usr/lib64/libasan.so.8.0.0+0x10722)
    #2 0x7f7ebe3564f3 in SDL_DBus_Init_Spinlocked.lto_priv.0 (/lib64/libSDL2-2.0.so.0+0x12c4f3) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #3 0x7f7ebe25ad2e in SDL_InitSubSystem_REAL.part.0 (/lib64/libSDL2-2.0.so.0+0x30d2e) (BuildId: 52b9526e652001ecfae08b5bcfe8921ea24f8410)
    #4 0x4013f8 in main (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x4013f8) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)
    #5 0x7f7ebdc46149 in __libc_start_call_main (/lib64/libc.so.6+0x28149) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #6 0x7f7ebdc4620a in __libc_start_main_impl (/lib64/libc.so.6+0x2820a) (BuildId: 788cdd41a15985bf8e0a48d213a46e07d58822df)
    #7 0x401214 in _start (/home/ave/Documents/qt/build-usp2-Desktop_Qt_6_6_1_GCC_64bit-RelWithDebInfo/leak+0x401214) (BuildId: 1e259da54f59bed5f88ce77b0bf822a985821f48)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd82bb89  (<unknown module>)
    #2 0x7f7ebd82f150  (<unknown module>)
    #3 0x7f7ebd82f4c7  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 24 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d8cc7 in calloc (/lib64/libasan.so.8+0xd8cc7) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd82c75b  (<unknown module>)
    #2 0x7f7ebd82e065  (<unknown module>)
    #3 0x7f7ebd82f572  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 16 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84eff5  (<unknown module>)
    #2 0x7f7ebd82b9c3  (<unknown module>)
    #3 0x7f7ebd82bbaf  (<unknown module>)
    #4 0x7f7ebd82f150  (<unknown module>)
    #5 0x7f7ebd82f4c7  (<unknown module>)
    #6 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd848050  (/usr/lib64/libasan.so.8.0.0+0x17050)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd848040  (/usr/lib64/libasan.so.8.0.0+0x17040)
    #3 0x7f7ebd850387  (<unknown module>)
    #4 0x7f7ebd85269d  (<unknown module>)
    #5 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #6 0x7f7ebd82e04d  (<unknown module>)
    #7 0x7f7ebd82f572  (<unknown module>)
    #8 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd853997  (<unknown module>)
    #3 0x7f7ebd828ae2  (<unknown module>)
    #4 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #5 0x7f7ebd850387  (<unknown module>)
    #6 0x7f7ebd85269d  (<unknown module>)
    #7 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #8 0x7f7ebd82e04d  (<unknown module>)
    #9 0x7f7ebd82f572  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d81e5  (/lib64/libasan.so.8+0xd81e5) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84ad7a  (/usr/lib64/libasan.so.8.0.0+0x19d7a)
    #2 0x7f7ebd83dd01  (<unknown module>)
    #3 0x7f7ebd84669b  (/usr/lib64/libasan.so.8.0.0+0x1569b)
    #4 0x7f7ebd84686f  (/usr/lib64/libasan.so.8.0.0+0x1586f)
    #5 0x7f7ebd8479a0  (/usr/lib64/libasan.so.8.0.0+0x169a0)
    #6 0x7f7ebd847f8f  (/usr/lib64/libasan.so.8.0.0+0x16f8f)
    #7 0x7f7ebd82d151  (<unknown module>)
    #8 0x7f7ebd841e0c  (/usr/lib64/libasan.so.8.0.0+0x10e0c)
    #9 0x7f7ebd82ef5d  (<unknown module>)
    #10 0x7f7eac06ddab  (/lib64/libnvidia-glcore.so.545.29.06+0xa6ddab) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 8 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd84abc9  (/usr/lib64/libasan.so.8.0.0+0x19bc9)
    #2 0x7f7ebd853969  (<unknown module>)
    #3 0x7f7ebd828ae2  (<unknown module>)
    #4 0x7f7ebd848344  (/usr/lib64/libasan.so.8.0.0+0x17344)
    #5 0x7f7ebd850387  (<unknown module>)
    #6 0x7f7ebd85269d  (<unknown module>)
    #7 0x7f7ebd842632  (/usr/lib64/libasan.so.8.0.0+0x11632)
    #8 0x7f7ebd82e04d  (<unknown module>)
    #9 0x7f7ebd82f572  (<unknown module>)
    #10 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

Indirect leak of 7 byte(s) in 1 object(s) allocated from:
    #0 0x7f7ebe4d92ef in malloc (/lib64/libasan.so.8+0xd92ef) (BuildId: 7fcb7759bc17ef47f9682414b6d99732d6a6ab0c)
    #1 0x7f7ebd849d53  (/usr/lib64/libasan.so.8.0.0+0x18d53)
    #2 0x7f7ebd82f2f7  (<unknown module>)
    #3 0x7f7ebd82f4c7  (<unknown module>)
    #4 0x7f7eac05a0de  (/lib64/libnvidia-glcore.so.545.29.06+0xa5a0de) (BuildId: 7c0c1563fc651a625e402ad40c7289972e2e063f)

SUMMARY: AddressSanitizer: 21877 byte(s) leaked in 273 allocation(s).