Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
7de8b5d1
Commit
7de8b5d1
authored
Aug 28, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Aug 28, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcp60: Fix locale::dtor implementation.
parent
c7417e45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
locale.c
dlls/msvcp60/locale.c
+1
-1
locale.c
dlls/msvcp71/locale.c
+1
-1
No files found.
dlls/msvcp60/locale.c
View file @
7de8b5d1
...
...
@@ -8278,7 +8278,7 @@ void __thiscall locale_dtor(locale *this)
TRACE
(
"(%p)
\n
"
,
this
);
if
(
this
->
ptr
&&
locale_facet__Decref
(
&
this
->
ptr
->
facet
))
{
locale__Locimp_dtor
(
this
->
ptr
);
MSVCRT_operator_delete
(
this
);
MSVCRT_operator_delete
(
this
->
ptr
);
}
}
...
...
dlls/msvcp71/locale.c
View file @
7de8b5d1
...
...
@@ -8810,7 +8810,7 @@ void __thiscall locale_dtor(locale *this)
TRACE
(
"(%p)
\n
"
,
this
);
if
(
this
->
ptr
&&
locale_facet__Decref
(
&
this
->
ptr
->
facet
))
{
locale__Locimp_dtor
(
this
->
ptr
);
MSVCRT_operator_delete
(
this
);
MSVCRT_operator_delete
(
this
->
ptr
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment