]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Update a comment.
authorFlorian Krohm <florian@eich-krohm.de>
Fri, 20 Feb 2015 16:46:50 +0000 (16:46 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Fri, 20 Feb 2015 16:46:50 +0000 (16:46 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14950

memcheck/mc_leakcheck.c

index 671fff5eb4bf0165f4b55b18725cb805063732c2..75ff3f2edf8ad2e68f178b0469f71fa0af81121f 100644 (file)
@@ -1632,7 +1632,7 @@ static void scan_memory_root_set(Addr searched, SizeT szB)
       if (seg->isCH)                                    continue;
 
       // Don't poke around in device segments as this may cause
-      // hangs.  Exclude /dev/zero just in case someone allocated
+      // hangs.  Include /dev/zero just in case someone allocated
       // memory by explicitly mapping /dev/zero.
       if (seg->kind == SkFileC 
           && (VKI_S_ISCHR(seg->mode) || VKI_S_ISBLK(seg->mode))) {