diff options
Diffstat (limited to 'fs/proc/base.c')
-rw-r--r-- | fs/proc/base.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/proc/base.c b/fs/proc/base.c index fe8d55fb17cc..89c20d9d50bf 100644 --- a/fs/proc/base.c +++ b/fs/proc/base.c | |||
@@ -797,7 +797,7 @@ out_no_task: | |||
797 | static ssize_t mem_write(struct file * file, const char * buf, | 797 | static ssize_t mem_write(struct file * file, const char * buf, |
798 | size_t count, loff_t *ppos) | 798 | size_t count, loff_t *ppos) |
799 | { | 799 | { |
800 | int copied = 0; | 800 | int copied; |
801 | char *page; | 801 | char *page; |
802 | struct task_struct *task = get_proc_task(file->f_dentry->d_inode); | 802 | struct task_struct *task = get_proc_task(file->f_dentry->d_inode); |
803 | unsigned long dst = *ppos; | 803 | unsigned long dst = *ppos; |
@@ -814,6 +814,7 @@ static ssize_t mem_write(struct file * file, const char * buf, | |||
814 | if (!page) | 814 | if (!page) |
815 | goto out; | 815 | goto out; |
816 | 816 | ||
817 | copied = 0; | ||
817 | while (count > 0) { | 818 | while (count > 0) { |
818 | int this_len, retval; | 819 | int this_len, retval; |
819 | 820 | ||