diff --git a/kernel/av/value.go b/kernel/av/value.go index 979a43f14..fb9b12fb0 100644 --- a/kernel/av/value.go +++ b/kernel/av/value.go @@ -58,6 +58,10 @@ type Value struct { } func (value *Value) String() string { + if nil == value { + return "" + } + switch value.Type { case KeyTypeBlock: if nil == value.Block {