Skip to content

Commit 8ea3781

Browse files
author
Delphix Engineering
committed
Merge branch 'refs/heads/upstream-HEAD' into repo-HEAD
2 parents aab2783 + 7ec08b9 commit 8ea3781

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/kdumpfile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1726,7 +1726,7 @@ bmp_new(kdump_bmp_t *bmp)
17261726
{
17271727
bmp_object *self;
17281728

1729-
self = PyObject_GC_New(bmp_object, &bmp_object_type);
1729+
self = PyObject_New(bmp_object, &bmp_object_type);
17301730
if (!self)
17311731
return NULL;
17321732

@@ -1907,7 +1907,7 @@ blob_new(kdump_blob_t *blob)
19071907
{
19081908
blob_object *self;
19091909

1910-
self = PyObject_GC_New(blob_object, &blob_object_type);
1910+
self = PyObject_New(blob_object, &blob_object_type);
19111911
if (!self)
19121912
return NULL;
19131913

0 commit comments

Comments
 (0)