xcode のアナライザーからいくつかの問題を解決しようとしています。私が解決策を見つけていないのは、「分岐条件がガベージ値に評価される」です。次のように発生しています。
int methodToCloseMyDatabase(sqlite3 **myDatabase, const char *callingFunctionName)
{
if (myDatabase)
{
if (*myDatabase) // The warning is thrown here
{
// Do something
}
}
}