Skip to content
Snippets Groups Projects
Commit ea108a62 authored by Graham McVicker's avatar Graham McVicker
Browse files

avoid comparison to uninitialized value

parent 76c7466e
No related branches found
No related tags found
No related merge requests found
......@@ -267,7 +267,7 @@ sub store {
}
#don't store this feature if it has already been stored
next if($mf->adaptor == $self);
next if($mf->adaptor && ($mf->adaptor == $self));
my $marker = $mf->marker;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment