소스 검색

fixed result uninitialized issue.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1805 bbd45198-f89e-11dd-88c7-29a3b14d5316
wuyangyong 14 년 전
부모
커밋
47a560b173
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      components/dfs/filesystems/elmfat/dfs_elm.c

+ 1 - 1
components/dfs/filesystems/elmfat/dfs_elm.c

@@ -405,7 +405,7 @@ int dfs_elm_flush(struct dfs_fd* file)
 
 int dfs_elm_lseek(struct dfs_fd* file, rt_off_t offset)
 {
-	FRESULT result;
+	FRESULT result = FR_OK;
 	if (file->type == FT_REGULAR)
 	{
 		FIL* fd;