]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
* grub-core/fs/romfs.c (grub_romfs_open): Add missing return.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 25 Oct 2011 15:38:22 +0000 (17:38 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Tue, 25 Oct 2011 15:38:22 +0000 (17:38 +0200)
ChangeLog
grub-core/fs/romfs.c

index e8cd7ea77af707b6066d8e4bedc6d9acd58c7a28..1b1975215e57af3a9f15515d3b02a6adddadf7e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2011-10-25  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * grub-core/fs/romfs.c (grub_romfs_open): Add missing return.
+
 2011-10-24  Vladimir Serbinenko  <phcoder@gmail.com>
 
        Fix 2G limit on ZFS.
index 58dc98f346b46683525ee52b8e8817e879c0b093..713e8293fb71a994e155eafc6dd17cad1b17a784 100644 (file)
@@ -367,6 +367,7 @@ grub_romfs_open (struct grub_file *file, const char *name)
 
   file->size = grub_be_to_cpu32 (fdiro->file.size);
   file->data = fdiro;
+  return GRUB_ERR_NONE;
 
  fail:
   grub_free (data);