diff options
| author | Stefano Babic <[email protected]> | 2010-04-21 09:47:19 +0200 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2010-04-28 10:00:13 +0200 |
| commit | 68651683593958cedcdfb9d06a5fe0a524f8dd6e (patch) | |
| tree | 1e159de423c7254085b8bdabe4365a42e4b406f4 | |
| parent | 3699c28e6d16b563629c285311a0ce62a2c4c5d0 (diff) | |
ubifsmount fails due to not initialized list
ubifsmount is not working and causes an access with
a pointer set to zero because the ubifs_fs_type
is not initialized correctly.
Signed-off-by: Stefano Babic <[email protected]>
Signed-off-by: Stefan Roese <[email protected]>
| -rw-r--r-- | fs/ubifs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ubifs/super.c b/fs/ubifs/super.c index 391dea4256e..39e3efec802 100644 --- a/fs/ubifs/super.c +++ b/fs/ubifs/super.c @@ -1178,6 +1178,7 @@ int ubifs_mount(char *vol_name) ubifs_umount(ubifs_sb->s_fs_info); INIT_LIST_HEAD(&ubifs_infos); + INIT_LIST_HEAD(&ubifs_fs_type.fs_supers); /* * Mount in read-only mode |
