Skip to content

Commit 01e6fc9

Browse files
committed
cromfs
1 parent 63d67d2 commit 01e6fc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/dfs/dfs_v2/filesystems/cromfs/dfs_cromfs.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1280,7 +1280,7 @@ static int cromfs_readlink(cromfs_info *ci, char *path, char *buf, int len)
12801280
goto end;
12811281
}
12821282
len = len - 1;
1283-
osize = osize < len : osize ? len;
1283+
osize = osize < len ? osize : len;
12841284
memcpy(buf, fi->buff, osize);
12851285
}
12861286

0 commit comments

Comments
 (0)