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
0cb50676
Commit
0cb50676
authored
Apr 21, 2014
by
Piotr Caban
Committed by
Alexandre Julliard
Apr 21, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt: Don't raise exception in _invalid_parameter.
parent
1ca38f1d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
errno.c
dlls/msvcrt/errno.c
+2
-0
misc.c
dlls/msvcrt/tests/misc.c
+14
-0
No files found.
dlls/msvcrt/errno.c
View file @
0cb50676
...
...
@@ -437,7 +437,9 @@ void __cdecl MSVCRT__invalid_parameter(const MSVCRT_wchar_t *expr, const MSVCRT_
else
{
ERR
(
"%s:%u %s: %s %lx
\n
"
,
debugstr_w
(
file
),
line
,
debugstr_w
(
func
),
debugstr_w
(
expr
),
arg
);
#if _MSVCR_VER > 0
RaiseException
(
STATUS_INVALID_CRUNTIME_PARAMETER
,
EXCEPTION_NONCONTINUABLE
,
0
,
NULL
);
#endif
}
}
...
...
dlls/msvcrt/tests/misc.c
View file @
0cb50676
...
...
@@ -30,6 +30,8 @@ static int (__cdecl *p_get_doserrno)(int *);
static
int
(
__cdecl
*
p_get_errno
)(
int
*
);
static
int
(
__cdecl
*
p_set_doserrno
)(
int
);
static
int
(
__cdecl
*
p_set_errno
)(
int
);
static
void
(
__cdecl
*
p__invalid_parameter
)(
const
wchar_t
*
,
const
wchar_t
*
,
const
wchar_t
*
,
unsigned
int
,
uintptr_t
);
static
void
init
(
void
)
{
...
...
@@ -42,6 +44,7 @@ static void init(void)
p_get_errno
=
(
void
*
)
GetProcAddress
(
hmod
,
"_get_errno"
);
p_set_doserrno
=
(
void
*
)
GetProcAddress
(
hmod
,
"_set_doserrno"
);
p_set_errno
=
(
void
*
)
GetProcAddress
(
hmod
,
"_set_errno"
);
p__invalid_parameter
=
(
void
*
)
GetProcAddress
(
hmod
,
"_invalid_parameter"
);
}
static
void
test_rand_s
(
void
)
...
...
@@ -341,6 +344,16 @@ static void test__popen(const char *name)
ok
(
errno
==
EBADF
,
"errno = %d
\n
"
,
errno
);
}
static
void
test__invalid_parameter
(
void
)
{
if
(
!
p__invalid_parameter
)
{
win_skip
(
"_invalid_parameter not available
\n
"
);
return
;
}
p__invalid_parameter
(
NULL
,
NULL
,
NULL
,
0
,
0
);
}
START_TEST
(
misc
)
{
int
arg_c
;
...
...
@@ -366,4 +379,5 @@ START_TEST(misc)
test__set_doserrno
();
test__set_errno
();
test__popen
(
arg_v
[
0
]);
test__invalid_parameter
();
}
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