Index: impl/memory/plist.go |
diff --git a/impl/memory/plist.go b/impl/memory/plist.go |
index 22a942b313f035fe6e56579c360a0e89936f2d0d..62e1d7c15bb966cd2f197370b2e42ca6c229aa4f 100644 |
--- a/impl/memory/plist.go |
+++ b/impl/memory/plist.go |
@@ -73,7 +73,7 @@ func partiallySerialize(pm rds.PropertyMap) (ret serializedIndexablePmap) { |
continue |
} |
buf.Reset() |
- rds.WriteProperty(buf, v, rds.WithoutContext) |
+ v.Write(buf, rds.WithoutContext) |
newVal := make([]byte, buf.Len()) |
copy(newVal, buf.Bytes()) |
newVals = append(newVals, newVal) |