Unverified Commit a4269abc authored by openeuler-ci-bot's avatar openeuler-ci-bot Committed by Gitee
Browse files

!9482 fs/ntfs3: Use 64 bit variable to avoid 32 bit overflow

parents d864f043 3a5ce657
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1184,7 +1184,8 @@ static int read_log_page(struct ntfs_log *log, u32 vbo,
static int log_read_rst(struct ntfs_log *log, bool first,
			struct restart_info *info)
{
	u32 skip, vbo;
	u32 skip;
	u64 vbo;
	struct RESTART_HDR *r_page = NULL;

	/* Determine which restart area we are looking for. */