Skip to content

Commit a240b3c

Browse files
corona10vstinner
andauthored
Update Objects/obmalloc.c
Co-authored-by: Victor Stinner <[email protected]>
1 parent fee757e commit a240b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/obmalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ _PyMem_ArenaAlloc(void *Py_UNUSED(ctx), size_t size)
468468
if (ptr == MAP_FAILED)
469469
return NULL;
470470
assert(ptr != NULL);
471-
_PyAnnotateMemoryMap(ptr, size, "cpython:obmalloc");
471+
_PyAnnotateMemoryMap(ptr, size, "cpython:pymalloc");
472472
return ptr;
473473
#else
474474
return malloc(size);

0 commit comments

Comments
 (0)