Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Davide Beatrici
wine
Commits
ad4f9d73
Commit
ad4f9d73
authored
10 months ago
by
Rémi Bernon
Committed by
Alexandre Julliard
10 months ago
Browse files
Options
Downloads
Patches
Plain Diff
win32u: Fix list corruption in vulkan_detach_surfaces.
parent
efce3600
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dlls/win32u/vulkan.c
+2
-2
2 additions, 2 deletions
dlls/win32u/vulkan.c
with
2 additions
and
2 deletions
dlls/win32u/vulkan.c
+
2
−
2
View file @
ad4f9d73
...
...
@@ -258,9 +258,9 @@ static void vulkan_init(void)
void
vulkan_detach_surfaces
(
struct
list
*
surfaces
)
{
struct
surface
*
surface
;
struct
surface
*
surface
,
*
next
;
LIST_FOR_EACH_ENTRY
(
surface
,
surfaces
,
struct
surface
,
entry
)
LIST_FOR_EACH_ENTRY
_SAFE
(
surface
,
next
,
surfaces
,
struct
surface
,
entry
)
{
driver_funcs
->
p_vulkan_surface_detach
(
surface
->
hwnd
,
surface
->
driver_private
);
list_remove
(
&
surface
->
entry
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment