xcode16 iOS18 YYKit中YYKVStorge.m sqlite3_finalize(stmt);导致闪退

33329b0794f4d03e4d2f66b0caf4a774.png

解决方法:

方法一:

- (BOOL)_dbClose {
  ...
    // 原代码
//    if (_dbStmtCache) CFRelease(_dbStmtCache);
    
    // 替换为
       if (_dbStmtCache) {
           CFIndex size = CFDictionaryGetCount(_dbStmtCache);
           CFTypeRef *valuesRef = (CFTypeRef *)malloc(size * sizeof(CFTypeRef));
           CFDictionaryGetKeysAndValues(_dbStmtCache, NULL, (const void **)valuesRef);
           const sqlite3_stmt **stmts = (const sqlite3_stmt **)valuesRef;
           for (CFIndex i = 0; i < size; i ++) {
               sqlite3_stmt *stmt = stmts[i];
               sqlite3_finalize(stmt);
           }
           free(valuesRef);
           CFRelease(_dbStmtCache);
           
       }
  ...
}

方法二:

static void _finalizeStatement(const void *key, const void *value, void *context) {
    sqlite3_finalize((sqlite3_stmt *)value);
}

- (BOOL)_dbClose {
  ...
    // 原代码
//    if (_dbStmtCache) CFRelease(_dbStmtCache);
    
    // 替换为
      if (_dbStmtCache) {              
        CFDictionaryApplyFunction(_dbStmtCache, _finalizeStatement, NULL);
        CFRelease(_dbStmtCache);
    }
  ...
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

友情链接更多精彩内容