From 55761d2e54298959535cda944518e83be8384b70 Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Tue, 22 Apr 2025 20:14:51 -0700 Subject: [PATCH] propvalue might be any size --- src/records.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/records.rs b/src/records.rs index 5a7e2cc..27f7eaf 100644 --- a/src/records.rs +++ b/src/records.rs @@ -392,7 +392,7 @@ impl Record for PROPATTR { pub struct PROPVALUE; impl Record for PROPVALUE { fn tag() -> u16 { RTAG_PROPVALUE } - fn expected_size() -> Option { Some(2) } + fn expected_size() -> Option { None } } pub struct BOX;