cifs: fix strcat buffer overflow and reduce raciness in smb21_set_oplock_level()
[linux-2.6-microblaze.git] / fs / seq_file.c
index 1dea7a8..abe27ec 100644 (file)
@@ -317,6 +317,7 @@ loff_t seq_lseek(struct file *file, loff_t offset, int whence)
        switch (whence) {
        case SEEK_CUR:
                offset += file->f_pos;
+               /* fall through */
        case SEEK_SET:
                if (offset < 0)
                        break;