summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorNeil Brown <neilb@suse.de>2008-07-12 20:27:39 +1000
committerNeil Brown <neilb@suse.de>2008-07-12 20:27:39 +1000
commitd2ca644994d642c31b41242140e1fe819711c8f7 (patch)
tree787148e3e6e9bb102e608e08a7baca53509ca9d1 /util.c
parent0d481d3723398828c81963dcd58b1bf768e2c0c2 (diff)
Remove getinfo_super_n and do some other cleaning up.
Getting close to a sensible description of what some of the superswitch methods are supposed to do!
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/util.c b/util.c
index 3a5daa26..4cecd6d0 100644
--- a/util.c
+++ b/util.c
@@ -858,6 +858,8 @@ struct supertype *dup_super(struct supertype *orig)
{
struct supertype *st;
+ if (!orig)
+ return orig;
st = malloc(sizeof(*st));
if (!st)
return st;