From bccf0e4d4baff88ae278ae3660034c16086448f1 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Mon, 5 Jan 2026 14:26:26 -0600 Subject: [PATCH] fs_xattr.cpp --- src/fs_xattr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fs_xattr.cpp b/src/fs_xattr.cpp index be583686..6cceb2de 100644 --- a/src/fs_xattr.cpp +++ b/src/fs_xattr.cpp @@ -189,7 +189,7 @@ fs::xattr::get(const string &path_, return rv; if(rv != -ERANGE) return rv; - if(val_->size() > 65536) + if(val_->size() > TOOBIG_SIZE) return -E2BIG; val_->resize(val_->size() * 1.2);