gpt4 book ai didi

c++ - Clang Static Analyzer 在使用 protobuf 的 set_allocated_* 时提示内存泄漏

转载 作者:行者123 更新时间:2023-12-05 06:06:46 24 4
gpt4 key购买 nike

使用以下原型(prototype)文件

message Foo {
// ...
}

message MyMessage {
Foo foo = 1;
}

我使用生成的 set_allocated_foo 方法设置 foo,该方法获取指针的所有权:

MyMessage m;
m.set_allocated_foo(new Foo);

m 离开范围时,clang-tidy 会给我以下警告:

warning: Potential memory leak [clang-analyzer-cplusplus.NewDeleteLeaks]
}
^
note: Memory is allocated
m.set_allocated_foo(new Foo);
^

有什么办法可以避免吗? (不使用 //NOLINT)

最佳答案

一种方法是使用 #ifdef __clang_analyzer__:

MyMessage m;
auto* f = new Foo;
m.set_allocated_foo(f);
#ifdef __clang_analyzer__
delete f
#endif

我不知道这是不是最好的方法。

关于c++ - Clang Static Analyzer 在使用 protobuf 的 set_allocated_* 时提示内存泄漏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65667955/

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