How to fix “pointer ‘old’ may be used after ‘realloc’ [-Wuse-after-free]” warning in C?

I’m encountering a warning in my C code while trying to reallocate memory using realloc. The specific warning is:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>lib/gc.c: In function ‘gcLocalRealloc’:
lib/gc.c:625:9: warning: pointer ‘old’ may be used after ‘realloc’ [-Wuse-after-free]
625 | gcLocalPop ( gc,old ) ;
| ^~~~~~~~~~~~~~~~~~~~~
lib/gc.c:621:11: note: call to ‘realloc’ here
621 | ptr = (void*) realloc ( ptr,SIZE ) ;
</code>
<code>lib/gc.c: In function ‘gcLocalRealloc’: lib/gc.c:625:9: warning: pointer ‘old’ may be used after ‘realloc’ [-Wuse-after-free] 625 | gcLocalPop ( gc,old ) ; | ^~~~~~~~~~~~~~~~~~~~~ lib/gc.c:621:11: note: call to ‘realloc’ here 621 | ptr = (void*) realloc ( ptr,SIZE ) ; </code>
lib/gc.c: In function ‘gcLocalRealloc’:
lib/gc.c:625:9: warning: pointer ‘old’ may be used after ‘realloc’ [-Wuse-after-free]
  625 |         gcLocalPop ( gc,old ) ;
      |         ^~~~~~~~~~~~~~~~~~~~~
lib/gc.c:621:11: note: call to ‘realloc’ here
  621 |     ptr = (void*) realloc ( ptr,SIZE ) ;

Here is the code that’s causing the issue:

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) {
//assert(SIZE!=0); // realloc(array, 0) is not equivalent to free(array).
if (SIZE == 0) {
gcFree(ptr);
return ptr = NULL;
}
assert(SIZE > 0);
if (ptr == NULL) return gcLocalMalloc(gc, SIZE);
void* old = ptr;
ptr = (void*) realloc(ptr, SIZE);
if (ptr != NULL) {
gcLocalPop(gc, old);
gcLocalPush(gc, ptr, SIZE);
assert(ptr != NULL);
}
return ptr;
}
</code>
<code>void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) { //assert(SIZE!=0); // realloc(array, 0) is not equivalent to free(array). if (SIZE == 0) { gcFree(ptr); return ptr = NULL; } assert(SIZE > 0); if (ptr == NULL) return gcLocalMalloc(gc, SIZE); void* old = ptr; ptr = (void*) realloc(ptr, SIZE); if (ptr != NULL) { gcLocalPop(gc, old); gcLocalPush(gc, ptr, SIZE); assert(ptr != NULL); } return ptr; } </code>
void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) {
    //assert(SIZE!=0); // realloc(array, 0) is not equivalent to free(array).
    if (SIZE == 0) {
        gcFree(ptr);
        return ptr = NULL;
    }
    
    assert(SIZE > 0);
    
    if (ptr == NULL) return gcLocalMalloc(gc, SIZE);

    void* old = ptr;
    
    ptr = (void*) realloc(ptr, SIZE);

    if (ptr != NULL) {
        gcLocalPop(gc, old);
        gcLocalPush(gc, ptr, SIZE);
        assert(ptr != NULL);
    }

    return ptr;
}

The compiler warns that the pointer old may be used after it is freed by realloc. How can I fix this warning while maintaining the functionality of reallocating memory and updating my garbage collection?

Thanks in advance for your help!

4

Once you call realloc, if it returns a non-null value, then the value of old (which contains the prior pointer value) becomes indeterminate. As such, attempting to use this value (even if you don’t dereference it) can cause undefined behavior.

What you should do in this case is always call gcLocalPop before calling realloc, and just call gcLocalPush whether successful or not.

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) {
if (SIZE == 0) {
gcFree(ptr);
return ptr = NULL;
}
assert(SIZE > 0);
if (ptr == NULL) return gcLocalMalloc(gc, SIZE);
int old_size = gcLocalPop(gc, ptr);
void* old = ptr;
ptr = realloc(ptr, SIZE);
if (ptr != NULL) {
gcLocalPush(gc, ptr, SIZE);
return ptr;
} else {
gcLocalPush(gc, old, old_size);
return old;
}
}
</code>
<code>void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) { if (SIZE == 0) { gcFree(ptr); return ptr = NULL; } assert(SIZE > 0); if (ptr == NULL) return gcLocalMalloc(gc, SIZE); int old_size = gcLocalPop(gc, ptr); void* old = ptr; ptr = realloc(ptr, SIZE); if (ptr != NULL) { gcLocalPush(gc, ptr, SIZE); return ptr; } else { gcLocalPush(gc, old, old_size); return old; } } </code>
void* gcLocalRealloc(gc_t *gc, void* ptr, size_t SIZE) {
    if (SIZE == 0) {
        gcFree(ptr);
        return ptr = NULL;
    }
    
    assert(SIZE > 0);
    if (ptr == NULL) return gcLocalMalloc(gc, SIZE);

    int old_size = gcLocalPop(gc, ptr);
    void* old = ptr;
    
    ptr = realloc(ptr, SIZE);

    if (ptr != NULL) {
        gcLocalPush(gc, ptr, SIZE);
        return ptr;
    } else {
        gcLocalPush(gc, old, old_size);
        return old;
    }
}

Note that you’ll have to modify gcLocalPop to return the size of the removed item in case you need to put it back in the case of a realloc failure.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật