瀏覽代碼

[HUST CSE][examples]Fix undefined behavior 'fclose(NULL)' (#7513)

Liu Haoyi 2 年之前
父節點
當前提交
efc3ced31d
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/utest/testcases/posix/stdio_h/functions/setbuf_tc.c

+ 1 - 1
examples/utest/testcases/posix/stdio_h/functions/setbuf_tc.c

@@ -23,8 +23,8 @@ static int setbuf_entry(void)
         printf("setbuf test:%s\n",test_data);
         ret = -1;
     }
-__exit:
     fclose(stream);
+__exit:
     return ret;
 }