int module_init()
{
char *pdate = (char *)malloc(100);
if(pdate == NULL)
return -1;
char *pdate2 = (char *)malloc(100);
if(pdate2 == NULL)
return -1;
free(pdate);
free(pdate2);
......
}
goto实现代码
int module_init()
{
char *pdate = (char *)malloc(100);
if(pdate == NULL)
goto err;
char *pdate2 = (char *)malloc(100);
if(pdate2 == NULL)
goto err;
free(pdate);
free(pdate2);
......
err://统一的出错处理
if(pdate != NULL)
free(pdate);
if(pdate2!= NULL)
free(pdate2);
return -1;
}
if(pdate == NULL)
goto err1;
...
if(pdate2 == NULL)
goto err2;
...
err1:
free(pdate);
err2:
free(pdate2);
...
总结:存在即合理,好坏取决于如何使用。
-END-
来源 | 二进制人生
作者 | 二进制人生
| 整理文章为传播相关技术,版权归原作者所有 |
| 如有侵权,请联系删除 |
【1】干货:嵌入式C语言源代码优化方案
【2】C语言内存泄露很严重,如何应对?
【3】C语言函数指针之回调函数
【4】光刻机原理解析——光刻机到底在“刻”什么?
【5】华为继鸿蒙OS后,即将发布国产编程语言!