msvcrt: Add simple test for _strdup(0).

This commit is contained in:
Louis. Lenders 2006-06-21 10:03:26 +01:00 committed by Alexandre Julliard
parent 6d4a811cd5
commit 6f1ab505ac
1 changed files with 10 additions and 0 deletions

View File

@ -99,6 +99,14 @@ static void test_mbsspn( void)
ok( ret==0, "_mbsspn returns %d should be 0\n", ret);
}
static void test_strdup(void)
{
char *str;
str = _strdup( 0 );
ok( str == 0, "strdup returns %s should be 0\n", str);
free( str );
}
START_TEST(string)
{
void *mem;
@ -125,4 +133,6 @@ START_TEST(string)
test_ismbblead();
/* test _mbsspn */
test_mbsspn();
/* test _strdup */
test_strdup();
}