File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -553,8 +553,8 @@ static void PrintLegend(InternalScopedString *str) {
553
553
PrintShadowByte (str, " Global redzone: " , kAsanGlobalRedzoneMagic );
554
554
PrintShadowByte (str, " Global init order: " ,
555
555
kAsanInitializationOrderMagic );
556
- PrintShadowByte (str, " Poisoned by user: " ,
557
- kAsanUserPoisonedMemoryMagic );
556
+ PrintShadowByte (str,
557
+ " Poisoned by user: " , kAsanUserPoisonedMemoryMagic );
558
558
PrintShadowByte (str, " Container overflow: " ,
559
559
kAsanContiguousContainerOOBMagic );
560
560
PrintShadowByte (str, " Array cookie: " ,
Original file line number Diff line number Diff line change @@ -36,7 +36,8 @@ void InitializePoisonTracking() {
36
36
PoisonRecords = PoisonRecordRingBuffer::New (flags ()->track_poison );
37
37
}
38
38
39
- PoisonRecordRingBuffer* SANITIZER_ACQUIRE (PoisonRecordsMutex) AcquirePoisonRecords() {
39
+ PoisonRecordRingBuffer *SANITIZER_ACQUIRE (PoisonRecordsMutex)
40
+ AcquirePoisonRecords() {
40
41
PoisonRecordsMutex.Lock ();
41
42
42
43
return PoisonRecords;
You can’t perform that action at this time.
0 commit comments