asan_interceptors.cc | 430 uptr from_size = REAL(strlen)(from) + 1; local in function:INTERCEPTOR 431 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); 432 ASAN_READ_RANGE(ctx, from, from_size); 433 ASAN_WRITE_RANGE(ctx, to, from_size); 475 uptr from_size = Min(size, MaybeRealStrnlen(from, size) + 1); local in function:INTERCEPTOR 476 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); 477 ASAN_READ_RANGE(ctx, from, from_size);
|