提交 f3ff592a 编写于 作者: W wangchen

fix: fclose函数无法释放线程锁问题修复

【背景】当前L0平台调用fopen时会创建线程锁,fclose中无对应释放的地方。

【修改方案】
在fclose中调用线程锁释放流程

【影响】
对现有的产品编译不会有影响。

re #I41LEO
Signed-off-by: Nwangchen <253227059@qq.com>
上级 dedb9a2d
......@@ -29,6 +29,8 @@ int __fclose(FILE *f)
if (*head == f) *head = f->next;
__ofl_unlock();
pthread_mutex_destroy(f->lock);
free(f->getln_buf);
free(f);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册