-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* stdlib/strtod_l.c (____STRTOF_INTERNAL): Consume closing brace on NAN(...) sequence. * stdlib/Makefile (tests): Add tst-strtod6. * stdlib/tst-strtod6.c: New file. * inet/inet6_opt.c (inet6_opt_init): Check extlen for overflow.
- Loading branch information
Ulrich Drepper
committed
Mar 8, 2008
1 parent
2127a18
commit b327855
Showing
5 changed files
with
66 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#include <math.h> | ||
#include <stdio.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
|
||
static int | ||
do_test (void) | ||
{ | ||
static const char str[] = "NaN(blabla)something"; | ||
char *endp; | ||
int result = 0; | ||
|
||
double d = strtod (str, &endp); | ||
if (!isnan (d)) | ||
{ | ||
puts ("strtod did not return NAN"); | ||
result = 1; | ||
} | ||
if (strcmp (endp, "something") != 0) | ||
{ | ||
puts ("strtod set incorrect end pointer"); | ||
result = 1; | ||
} | ||
|
||
float f = strtof (str, &endp); | ||
if (!isnanf (f)) | ||
{ | ||
puts ("strtof did not return NAN"); | ||
result = 1; | ||
} | ||
if (strcmp (endp, "something") != 0) | ||
{ | ||
puts ("strtof set incorrect end pointer"); | ||
result = 1; | ||
} | ||
|
||
long double ld = strtold (str, &endp); | ||
if (!isnan (ld)) | ||
{ | ||
puts ("strtold did not return NAN"); | ||
result = 1; | ||
} | ||
if (strcmp (endp, "something") != 0) | ||
{ | ||
puts ("strtold set incorrect end pointer"); | ||
result = 1; | ||
} | ||
|
||
return result; | ||
} | ||
|
||
#define TEST_FUNCTION do_test () | ||
#include "../test-skeleton.c" |