summaryrefslogtreecommitdiffstats
path: root/rfs.c
diff options
context:
space:
mode:
Diffstat (limited to 'rfs.c')
-rw-r--r--rfs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/rfs.c b/rfs.c
index 5234e73..9256926 100644
--- a/rfs.c
+++ b/rfs.c
@@ -35,7 +35,7 @@ void ipc_rfs_nv_read_item(struct ipc_message_info *info)
void *rfs_data;
int rc;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_rfs_io))
+ if (info->data == NULL || info->length < sizeof(struct ipc_rfs_io))
return;
rfs_io = (struct ipc_rfs_io *) info->data;
@@ -80,7 +80,7 @@ void ipc_rfs_nv_write_item(struct ipc_message_info *info)
void *rfs_data;
int rc;
- if (info == NULL || info->data == NULL || info->length < sizeof(struct ipc_rfs_io))
+ if (info->data == NULL || info->length < sizeof(struct ipc_rfs_io))
return;
rfs_io = (struct ipc_rfs_io *) info->data;