mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 03:15:31 +09:00
ANDROID: Incremental fs: Fix two typos
Test: incfs_test passes Bug: 151240628 Signed-off-by: Paul Lawrence <paullawrence@google.com> Change-Id: I627e683b562329fd57aedc8393e22449ff09ee1f
This commit is contained in:
@@ -796,7 +796,7 @@ static int process_file_signature_md(struct incfs_file_signature *sg,
|
||||
int error = 0;
|
||||
struct incfs_df_signature *signature =
|
||||
kzalloc(sizeof(*signature), GFP_NOFS);
|
||||
void *buf = 0;
|
||||
void *buf = NULL;
|
||||
ssize_t read;
|
||||
|
||||
if (!df || !df->df_backing_file_context ||
|
||||
|
||||
@@ -57,7 +57,7 @@ struct signature_info {
|
||||
struct mem_range root_hash;
|
||||
};
|
||||
|
||||
static u32 read_u32(u8 **p, u8 *top, u32 *result)
|
||||
static bool read_u32(u8 **p, u8 *top, u32 *result)
|
||||
{
|
||||
if (*p + sizeof(u32) > top)
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user