gpt4 book ai didi

我可以检查指针是否由 malloc/calloc/realloc 分配吗?

转载 作者:太空狗 更新时间:2023-10-29 16:38:32 24 4
gpt4 key购买 nike

<分区>

我想知道是否可以检查传递给函数的指针是否由 malloc/calloc/realloc 分配?

int main(){
struct something o;
struct something *a;
a = malloc(sizeof(struct something));
freeSome(&o);/*This would normally throw an (corruption?) error*/
freeSome(a);/*This is fine*/
}

void freeSome(struct something * t){
if (/*expression here*/){
free(t);
}
}

我知道您通常会检查是否 t == NULL,但我只是想知道是否有可能查看是否已为给定指针分配了内存。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com