diff options
Diffstat (limited to 'arch/x86_64/lib/usercopy.c')
-rw-r--r-- | arch/x86_64/lib/usercopy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/lib/usercopy.c b/arch/x86_64/lib/usercopy.c index a82bfacdb1af..893d43f838cc 100644 --- a/arch/x86_64/lib/usercopy.c +++ b/arch/x86_64/lib/usercopy.c | |||
@@ -55,7 +55,7 @@ strncpy_from_user(char *dst, const char __user *src, long count) | |||
55 | { | 55 | { |
56 | long res = -EFAULT; | 56 | long res = -EFAULT; |
57 | if (access_ok(VERIFY_READ, src, 1)) | 57 | if (access_ok(VERIFY_READ, src, 1)) |
58 | __do_strncpy_from_user(dst, src, count, res); | 58 | return __strncpy_from_user(dst, src, count); |
59 | return res; | 59 | return res; |
60 | } | 60 | } |
61 | EXPORT_SYMBOL(strncpy_from_user); | 61 | EXPORT_SYMBOL(strncpy_from_user); |