Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
4134c57a
Commit
4134c57a
authored
May 20, 2010
by
Piotr Caban
Committed by
Alexandre Julliard
May 20, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Fix compilation error (x86_64-pc-mingw32).
parent
2c07791c
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
42 deletions
+42
-42
locale.c
dlls/msvcrt/locale.c
+37
-37
main.c
dlls/msvcrt/main.c
+2
-2
msvcrt.h
dlls/msvcrt/msvcrt.h
+1
-1
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+2
-2
No files found.
dlls/msvcrt/locale.c
View file @
4134c57a
This diff is collapsed.
Click to expand it.
dlls/msvcrt/main.c
View file @
4134c57a
...
...
@@ -69,7 +69,7 @@ static inline void msvcrt_free_tls_mem(void)
HeapFree
(
GetProcessHeap
(),
0
,
tls
->
asctime_buffer
);
HeapFree
(
GetProcessHeap
(),
0
,
tls
->
wasctime_buffer
);
HeapFree
(
GetProcessHeap
(),
0
,
tls
->
strerror_buffer
);
_free_locale
(
tls
->
locale
);
MSVCRT_
_free_locale
(
tls
->
locale
);
}
HeapFree
(
GetProcessHeap
(),
0
,
tls
);
}
...
...
@@ -113,7 +113,7 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
msvcrt_free_tls_mem
();
if
(
!
msvcrt_free_tls
())
return
FALSE
;
_free_locale
(
MSVCRT_locale
);
MSVCRT_
_free_locale
(
MSVCRT_locale
);
TRACE
(
"finished process free
\n
"
);
break
;
case
DLL_THREAD_DETACH
:
...
...
dlls/msvcrt/msvcrt.h
View file @
4134c57a
...
...
@@ -800,7 +800,7 @@ typedef struct MSVCRT_localeinfo_struct
extern
MSVCRT__locale_t
MSVCRT_locale
;
MSVCRT__locale_t
get_locale
(
void
);
void
__cdecl
_free_locale
(
MSVCRT__locale_t
);
void
__cdecl
MSVCRT_
_free_locale
(
MSVCRT__locale_t
);
#ifndef __WINE_MSVCRT_TEST
int
__cdecl
MSVCRT__write
(
int
,
const
void
*
,
unsigned
int
);
...
...
dlls/msvcrt/msvcrt.spec
View file @
4134c57a
...
...
@@ -1432,8 +1432,8 @@
# Functions not exported in native dll:
@ cdecl _get_invalid_parameter_handler()
@ cdecl _set_invalid_parameter_handler(ptr)
@ cdecl _create_locale(long str)
@ cdecl _free_locale(ptr)
@ cdecl _create_locale(long str)
MSVCRT__create_locale
@ cdecl _free_locale(ptr)
MSVCRT__free_locale
@ cdecl _configthreadlocale(long)
@ cdecl _wcstod_l(wstr ptr) MSVCRT__wcstod_l
@ cdecl ___mb_cur_max_l_func(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