无法从静态分析器中找到泄漏

发布于 2024-11-03 03:43:44 字数 239 浏览 0 评论 0原文

我从 Clang 静态分析器收到一些错误,说我从以下代码中发现了一些泄漏。但是我无法找到泄漏点。请告诉我哪里漏水。

 Favourites *fav = [[Favourites alloc] initWithNibName:@"Favourites" bundle:nil];
if (viewController == fav) {
    [fav doHud];
    [fav release];
}

I am getting some errors from the Clang Static Analyzer saying that I have a few leaks from the following code. However I am unable to find the leak. Please tell me where the leak is.

 Favourites *fav = [[Favourites alloc] initWithNibName:@"Favourites" bundle:nil];
if (viewController == fav) {
    [fav doHud];
    [fav release];
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

坚持沉默 2024-11-10 03:43:44

如果 viewController 没有最终 == 到 fav,则 fav 将不会被释放。您没有将 viewController 设置为等于 fav,因此它不会释放。将 [fav release] 移到 if 之外,应该没问题。

或者完全摆脱[favouritesrelease]并只使用autorelease,例如:

Favourites *fav = [[[Favourites alloc] initWithNibName:@"Favourites"bundle:nil] autorelease];< /代码>

fav won't be released if viewController does not end up == to fav. You are not setting viewController to be equal to fav so it won't release. Move[fav release] outside the if and you should be fine.

or get rid of the[fav release] altogether and just use autorelease like:

Favourites *fav = [[[Favourites alloc] initWithNibName:@"Favourites" bundle:nil] autorelease];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文