Whoops... I guess the regtests don't exercise that code...

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4416
This commit is contained in:
Nicholas Nethercote 2005-08-15 01:54:05 +00:00
parent fcdc60441e
commit e009050880

View File

@ -2325,8 +2325,8 @@ static Bool client_perm_maybe_describe( Addr a, AddrInfo* ai )
if (mp != NULL) {
if (mp->chunks != NULL) {
MAC_Chunk* mc;
VG_(OSet_ResetIter)(mp->chunks);
while ( (mc = VG_(OSet_Next)(mp->chunks)) ) {
VG_(HT_ResetIter)(mp->chunks);
while ( (mc = VG_(HT_Next)(mp->chunks)) ) {
if (VG_(addr_is_in_block)(a, mc->data, mc->size,
MAC_MALLOC_REDZONE_SZB)) {
ai->akind = UserG;