Whitespace fixup for r252052. NFC.

llvm-svn: 252053
This commit is contained in:
Kuba Brecka 2015-11-04 15:57:38 +00:00
parent 465cb8a6fa
commit ef731a9edc
1 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,8 @@ INTERCEPTOR(int, malloc_make_nonpurgeable, void *ptr) {
INTERCEPTOR(void, malloc_set_zone_name, malloc_zone_t *zone, const char *name) {
COMMON_MALLOC_ENTER();
// Allocate |sizeof(COMMON_MALLOC_ZONE_NAME "-") + internal_strlen(name)| bytes.
// Allocate |sizeof(COMMON_MALLOC_ZONE_NAME "-") + internal_strlen(name)|
// bytes.
size_t buflen =
sizeof(COMMON_MALLOC_ZONE_NAME "-") + (name ? internal_strlen(name) : 0);
InternalScopedString new_name(buflen);