eee24387e741 — Steve Fink 6 years ago
emilio defined 0xf3f3f3f3
1 files changed, 1 insertions(+), 1 deletions(-)

M plugins/knowledge/__init__.py
M plugins/knowledge/__init__.py +1 -1
@@ 362,7 362,7 @@ it is the symptom when you mark a Cell (
 <...1sec...>you probably need to mark it through that pointer as well
 ''',
         'cd': '0xcd is the LifoAlloc freed memory poison pattern, or the Windows C runtime uninitialized memory',
-        'f3': '0xf3 is kArcSliceCanary from https://searchfox.org/mozilla-central/rev/94c6b5f06d2464f6780a52f32e917d25ddc30d6b/layout/style/ServoStyleConstsInlines.h#26',
+        'f3': '0xf3f3f3f3 is the canary value for the refcounted ArcSlices shared between Rust and C++, kArcSliceCanary from https://searchfox.org/mozilla-central/rev/94c6b5f06d2464f6780a52f32e917d25ddc30d6b/layout/style/ServoStyleConstsInlines.h#26',
     }
 
     PATTERN = "|".join(re.sub(r'[a-f]', lambda m: '[' + m.group(0) + m.group(0).upper() + ']', n)