-
Notifications
You must be signed in to change notification settings - Fork 206
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
Heap Corruption Detected #536
Comments
Does |
If I add the code '<script src=\“webui.js\”></script> ' to the HTML code, the program reports error |
here is the information
[Core] _webui_http_handler() -> HTTP Status Code: 200 [Core] _webui_free_mem(0x000001C9A9AB86A0) |
I just test it, it's working fine for me.
I guess you are doing something with includes, or how you compile project. Make sure the static library and your project are compiled with the same compiler version. The |
Try this: #include "webui.hpp"
#include ... // Your project includes here
int main() {
webui::window my_window;
my_window.show_browser("<html><head><script src=\"webui.js\"></script></head> TEST </html>", Edge); // Or Chrome, Firefox...
webui::wait();
return 0;
} |
I also received this error message. 2.4.2 is OK, win11 24H2 CMakelists.txt
main.cpp
|
Hi, @Hunlongyu, I can't reproduce the issue, whatever I do, it's always working fine for me.
|
|
Can you please compress the full project folder and share it here? |
@Hunlongyu @LoseYouNow Try using this |
Where is Because my test runs well, I want to test your own test project to try to reproduce the issue. |
I need this project. |
Thank you @Hunlongyu, yes, I can reproduce the issue. |
how can i fix this problem
The text was updated successfully, but these errors were encountered: