Browse Source

Fix memory leak in X11 webview

Signed-off-by: falkTX <falktx@falktx.com>
popup-tests
falkTX 1 month ago
parent
commit
4100e47d4c
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      distrho/extra/WebViewImpl.cpp

+ 3
- 1
distrho/extra/WebViewImpl.cpp View File

@@ -773,8 +773,10 @@ void webViewIdle(const WebViewHandle handle)

d_stderr("server ringbuffer data race, abort!");
handle->rbctrl2.flush();
return;
break;
}

std::free(buffer);
#else
// unused
(void)handle;


Loading…
Cancel
Save