gpt4 book ai didi

c - 转移 Splint 中存储的所有权

转载 作者:太空宇宙 更新时间:2023-11-04 03:45:04 30 4
gpt4 key购买 nike

使用 C 中的简单链表实现,我如何告诉 Splint 我正在转让 data 的所有权?

typedef struct {
void* data;
/*@null@*/ void* next;
} list;

static /*@null@*/ list* new_list(/*@notnull@*/ void* data)
{
list* l;

l = malloc(sizeof(list));

if (l == NULL)
return NULL;

l->next = NULL;
l->data = data;

return l;
}

我收到此错误消息:

Implicitly temp storage data assigned to implicitly
only: list->data = data
Temp storage (associated with a formal parameter) is transferred to a
non-temporary reference. The storage may be released or new aliases created.
(Use -temptrans to inhibit warning)

我想告诉 Splint,释放 data 的责任已转移到列表数据结构中。

最佳答案

解决方案在 function interfaces 的 Splint 手册中.基本上,将函数签名更改为:

static /*@null@*/ list* new_list(/*@notnull@*/ /*@only@*/ void* data)
/*@defines result->data @*/

虽然这样做时我们会得到一个新的错误:

int main()
{
list* l = new_list("hej");

return 0;
}


Observer storage passed as only param:
new_list ("hej")
Observer storage is transferred to a non-observer reference. (Use
-observertrans to inhibit warning)

关于c - 转移 Splint 中存储的所有权,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25351332/

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