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
e3592d04
Commit
e3592d04
authored
Oct 25, 2013
by
Piotr Caban
Committed by
Alexandre Julliard
Oct 25, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Add __security_error_handler stub.
parent
ca894127
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
2 deletions
+14
-2
msvcr70.spec
dlls/msvcr70/msvcr70.spec
+1
-1
msvcr71.spec
dlls/msvcr71/msvcr71.spec
+1
-1
except.c
dlls/msvcrt/except.c
+11
-0
msvcrt.spec
dlls/msvcrt/msvcrt.spec
+1
-0
No files found.
dlls/msvcr70/msvcr70.spec
View file @
e3592d04
...
...
@@ -194,7 +194,7 @@
@ extern __pioinfo msvcrt.__pioinfo
@ stub __pwctype_func
@ cdecl __pxcptinfoptrs() msvcrt.__pxcptinfoptrs
@
stub
__security_error_handler
@
cdecl __security_error_handler(long ptr) msvcrt.
__security_error_handler
@ cdecl __set_app_type(long) msvcrt.__set_app_type
@ stub __set_buffer_overrun_handler
@ extern __setlc_active msvcrt.__setlc_active
...
...
dlls/msvcr71/msvcr71.spec
View file @
e3592d04
...
...
@@ -189,7 +189,7 @@
@ extern __pioinfo msvcrt.__pioinfo
@ stub __pwctype_func
@ cdecl __pxcptinfoptrs() msvcrt.__pxcptinfoptrs
@
stub
__security_error_handler
@
cdecl __security_error_handler(long ptr) msvcrt.
__security_error_handler
@ cdecl __set_app_type(long) msvcrt.__set_app_type
@ stub __set_buffer_overrun_handler
@ extern __setlc_active msvcrt.__setlc_active
...
...
dlls/msvcrt/except.c
View file @
e3592d04
...
...
@@ -303,3 +303,14 @@ MSVCRT_security_error_handler CDECL _set_security_error_handler(
security_error_handler
=
handler
;
return
old
;
}
/* __security_error_handler - not exported in native msvcrt */
void
CDECL
__security_error_handler
(
int
code
,
void
*
data
)
{
if
(
security_error_handler
)
security_error_handler
(
code
,
data
);
else
FIXME
(
"(%d, %p) stub
\n
"
,
code
,
data
);
MSVCRT__exit
(
3
);
}
dlls/msvcrt/msvcrt.spec
View file @
e3592d04
...
...
@@ -1528,6 +1528,7 @@
@ cdecl _set_invalid_parameter_handler(ptr)
@ cdecl _set_purecall_handler(ptr)
@ cdecl _set_security_error_handler(ptr)
@ cdecl __security_error_handler(long ptr)
@ cdecl -arch=i386 _statusfp2(ptr ptr)
@ cdecl _wdupenv_s(ptr ptr wstr)
@ cdecl _get_printf_count_output() MSVCRT__get_printf_count_output
...
...
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