我正在尝试从 xcode 的分析器中清理一些问题。我还没有找到解决方案是“分支条件评估为垃圾值”。它以下列方式发生:
int methodToCloseMyDatabase(sqlite3 **myDatabase, const char *callingFunctionName)
{
if (myDatabase)
{
if (*myDatabase) // The warning is thrown here
{
// Do something
}
}
}