list.winehq.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

Wine-gitlab

Thread Start a new thread
Download
Threads by month
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
wine-gitlab@list.winehq.org

December 2024

  • 3 participants
  • 569 discussions
Re: [PATCH v2 0/1] MR7021: wined3d: Add nop state entries for states now invalidated on the client side. - approved
by Alexandre Julliard (@julliard) 17 Dec '24

17 Dec '24
This merge request was approved by Alexandre Julliard. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7021
1 0
0 0
Re: [PATCH v3 0/6] MR7033: windowscodecs/tests: Added some tests for Exif and Gps IFDs embedded in App1 blob. - approved
by Alexandre Julliard (@julliard) 17 Dec '24

17 Dec '24
This merge request was approved by Alexandre Julliard. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7033
1 0
0 0
[PATCH v5 0/2] MR7032: Add embeddedbrowserwebview aka. WebView2 DLL stub.
by Bernhard Kölbl 17 Dec '24

17 Dec '24
(For after the code freeze.) I think we want to have this DLL living in Wine for easier development, and probably dynamically load our custom Chromium fork from here. (just like MSHTML and wine-Gecko) The code for that fork could then be created in its own repo. -- v5: embeddedbrowserwebview: Create CreateWebViewEnvironmentWithOptionsInternal stub. https://gitlab.winehq.org/wine/wine/-/merge_requests/7032
1 2
0 0
[PATCH v4 0/2] MR7032: Add embeddedbrowserwebview aka. WebView2 DLL stub.
by Bernhard Kölbl 17 Dec '24

17 Dec '24
(For after the code freeze.) I think we want to have this DLL living in Wine for easier development, and probably dynamically load our custom Chromium fork from here. (just like MSHTML and wine-Gecko) The code for that fork could then be created in its own repo. -- v4: embeddedbrowserwebview: Create CreateWebViewEnvironmentWithOptionsInternal stub. https://gitlab.winehq.org/wine/wine/-/merge_requests/7032
1 4
0 0
[PATCH v3 0/2] MR7032: Add embeddedbrowserwebview aka. WebView2 DLL stub.
by Bernhard Kölbl 17 Dec '24

17 Dec '24
(For after the code freeze.) I think we want to have this DLL living in Wine for easier development, and probably dynamically load our custom Chromium fork from here. (just like MSHTML and wine-Gecko) The code for that fork could then be created in its own repo. -- v3: embeddedbrowserwebview: Create CreateWebViewEnvironmentWithOptionsInternal stub. embeddedbrowserwebview: Add stub dll. https://gitlab.winehq.org/wine/wine/-/merge_requests/7032
1 2
0 0
[PATCH 0/3] MR7037: ddraw: Clear sysmem textures on the CPU.
by Elizabeth Figura (@zfigura) 17 Dec '24

17 Dec '24
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7037
3 4
0 0
[PATCH v2 0/1] MR7016: winex11.drv: Use NtUserReleaseDC() with hdc in X11DRV_vulkan_surface_presented().
by Paul Gofman (@gofman) 17 Dec '24

17 Dec '24
-- v2: winex11.drv: Use NtUserReleaseDC() with hdc. https://gitlab.winehq.org/wine/wine/-/merge_requests/7016
3 3
0 0
Re: [PATCH v4 0/1] MR6993: msxml3: Correct looping of Document Element node map. - approved
by Nikolay Sivov (@nsivov) 17 Dec '24

17 Dec '24
This merge request was approved by Nikolay Sivov. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6993
1 0
0 0
[PATCH v2 0/1] MR7035: server: Avoid crash when handle table is allocated but not yet filled.
by Bernhard Übelacker 17 Dec '24

17 Dec '24
I was experimenting with a Wine tree built with ASan enabled at PE side. With it I tried to run the test suite, but every now and then I received a crash in wineserver. Because the management structure for the ASan shadow makes each wine process using several gigabytes memory I had a taskmgr.exe running all the time. I think this crash is a result of this taskmgr calling `NtQuerySystemInformation(SystemHandleInformation)` in conjunction with having many new processes created by the tests. This patch leaves `enum_handles` early if the last member has still the value -1 from `alloc_handle_table`. ``` Program received signal SIGSEGV, Segmentation fault. enum_handles (process=0x55ec0db97780, user=0x7ffce90cee30) at .../wine/wine/server/handle.c:846 846 if (!entry->ptr) continue; 1: x/i $pc => 0x55ec0b25ae6e <enum_handles+158>: cmpq $0x0,(%rdx) (rr) bt #0 enum_handles (process=0x55ec0db97780, user=0x7ffce90cee30) at .../wine/wine/server/handle.c:846 #1 0x000055ec0b268908 in enum_processes (cb=cb(a)entry=0x55ec0b25add0 <enum_handles>, user=user(a)entry=0x7ffce90cee30) at .../wine/wine/server/process.c:1112 #2 0x000055ec0b25c868 in req_get_system_handles (req=<optimized out>, reply=0x7ffce90cee90) at .../wine/wine/server/handle.c:875 #3 0x000055ec0b27d6eb in call_req_handler (thread=thread(a)entry=0x55ec0db62c10) at .../wine/wine/server/request.c:304 #4 0x000055ec0b27e62a in read_request (thread=thread(a)entry=0x55ec0db62c10) at .../wine/wine/server/request.c:338 #5 0x000055ec0b2896c0 in thread_poll_event (fd=<optimized out>, event=1) at .../wine/wine/server/thread.c:389 #6 0x000055ec0b2560b7 in fd_poll_event (event=<optimized out>, fd=<optimized out>) at .../wine/wine/server/fd.c:503 #7 main_loop_epoll () at .../wine/wine/server/fd.c:597 #8 0x000055ec0b25633e in main_loop () at .../wine/wine/server/fd.c:953 #9 0x000055ec0b246aa2 in main (argc=3, argv=0x7ffce90cf6c8) at .../wine/wine/server/main.c:238 (rr) print table->last $38 = -1 (rr) print table->count $39 = 32 ``` -- v2: server: Avoid crash when handle table is allocated but not yet filled. https://gitlab.winehq.org/wine/wine/-/merge_requests/7035
1 2
0 0
[PATCH 0/1] MR7035: server: Avoid crash when handle table is allocated but not yet filled.
by Bernhard Übelacker 17 Dec '24

17 Dec '24
I was experimenting with a Wine tree built with ASan enabled at PE side. With it I tried to run the test suite, but every now and then I received a crash in wineserver. Because the management structure for the ASan shadow makes each wine process using several gigabytes memory I had a taskmgr.exe running all the time. I think this crash is a result of this taskmgr calling `NtQuerySystemInformation(SystemHandleInformation)` in conjunction with having many new processes created by the tests. This patch leaves `enum_handles` early if the last member has still the value -1 from `alloc_handle_table`. ``` Program received signal SIGSEGV, Segmentation fault. enum_handles (process=0x55ec0db97780, user=0x7ffce90cee30) at .../wine/wine/server/handle.c:846 846 if (!entry->ptr) continue; 1: x/i $pc => 0x55ec0b25ae6e <enum_handles+158>: cmpq $0x0,(%rdx) (rr) bt #0 enum_handles (process=0x55ec0db97780, user=0x7ffce90cee30) at .../wine/wine/server/handle.c:846 #1 0x000055ec0b268908 in enum_processes (cb=cb(a)entry=0x55ec0b25add0 <enum_handles>, user=user(a)entry=0x7ffce90cee30) at .../wine/wine/server/process.c:1112 #2 0x000055ec0b25c868 in req_get_system_handles (req=<optimized out>, reply=0x7ffce90cee90) at .../wine/wine/server/handle.c:875 #3 0x000055ec0b27d6eb in call_req_handler (thread=thread(a)entry=0x55ec0db62c10) at .../wine/wine/server/request.c:304 #4 0x000055ec0b27e62a in read_request (thread=thread(a)entry=0x55ec0db62c10) at .../wine/wine/server/request.c:338 #5 0x000055ec0b2896c0 in thread_poll_event (fd=<optimized out>, event=1) at .../wine/wine/server/thread.c:389 #6 0x000055ec0b2560b7 in fd_poll_event (event=<optimized out>, fd=<optimized out>) at .../wine/wine/server/fd.c:503 #7 main_loop_epoll () at .../wine/wine/server/fd.c:597 #8 0x000055ec0b25633e in main_loop () at .../wine/wine/server/fd.c:953 #9 0x000055ec0b246aa2 in main (argc=3, argv=0x7ffce90cf6c8) at .../wine/wine/server/main.c:238 (rr) print table->last $38 = -1 (rr) print table->count $39 = 32 ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7035
2 2
0 0
  • ← Newer
  • 1
  • ...
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • ...
  • 57
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.