diff options
Diffstat (limited to 'trans/null.c')
-rw-r--r-- | trans/null.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/trans/null.c b/trans/null.c index 8b3b4e0f..4828cce3 100644 --- a/trans/null.c +++ b/trans/null.c @@ -245,6 +245,8 @@ trivfs_S_file_set_size (struct trivfs_protid *cred, mach_port_t reply, mach_msg_type_name_t replytype, loff_t size) { + if (size < 0) + return EINVAL; return 0; } |