Skip to content

Commit

Permalink
Update valgrind suppression file.
Browse files Browse the repository at this point in the history
Don't complain when strtod is called from luaO_str2d.
  • Loading branch information
mordante committed Feb 23, 2014
1 parent a0f0360 commit f7de93c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog
Expand Up @@ -5,6 +5,7 @@ Version 1.11.10+dev:
* Bug #21643: Removing fog from a single hex no longer makes the hex ugly.
* Miscellaneous and bug fixes:
* Units can no longer be moved in linger mode (bug #21450).
* Changed: Updated valgrind suppression file.

Version 1.11.10:
* Add-ons client:
Expand Down
15 changes: 15 additions & 0 deletions utils/valgrind_memcheck_suppressions.supp
Expand Up @@ -27,7 +27,22 @@
fun:_ZN6config15attribute_valueaSERKSs
}

# Also don't complain when strtod is called from luaO_str2d

{
strtod_does_not_require_initilization_of_eptr
Memcheck:Value8
fun:__GI___strncasecmp_l
fun:____strtod_l_internal
fun:_Z10luaO_str2dPKcmPd
}
{
strtod_does_not_require_initilization_of_eptr
Memcheck:Addr8
fun:__GI___strncasecmp_l
fun:____strtod_l_internal
fun:_Z10luaO_str2dPKcmPd
}


#SECTION: Static Pointers Initialized with new to force proper order of initialization
Expand Down

0 comments on commit f7de93c

Please sign in to comment.