blob: constify attr argument to blob_memdup master
authorFelix Fietkau <nbd@nbd.name>
Thu, 19 Dec 2024 10:26:18 +0000 (11:26 +0100)
committerFelix Fietkau <nbd@nbd.name>
Thu, 19 Dec 2024 10:26:21 +0000 (11:26 +0100)
It is not modified, so it can be const

Signed-off-by: Felix Fietkau <nbd@nbd.name>
blob.c
blob.h

diff --git a/blob.c b/blob.c
index 65adb139553f88766eb075f720a5687fe8f3ad28..abcc9f244b45cd5eaf07f5aadbb17b246237d8c7 100644 (file)
--- a/blob.c
+++ b/blob.c
@@ -323,7 +323,7 @@ blob_attr_equal(const struct blob_attr *a1, const struct blob_attr *a2)
 }
 
 struct blob_attr *
-blob_memdup(struct blob_attr *attr)
+blob_memdup(const struct blob_attr *attr)
 {
        struct blob_attr *ret;
        int size = blob_pad_len(attr);
diff --git a/blob.h b/blob.h
index 6d618767b91af92a0a4184e0236db757f90c3ab9..13bc7ccab8b05a0cdce0b4fd2e4d0b2831a67721 100644 (file)
--- a/blob.h
+++ b/blob.h
@@ -200,7 +200,7 @@ extern struct blob_attr *blob_put(struct blob_buf *buf, int id, const void *ptr,
 extern bool blob_check_type(const void *ptr, unsigned int len, int type);
 extern int blob_parse(struct blob_attr *attr, struct blob_attr **data, const struct blob_attr_info *info, int max);
 extern int blob_parse_untrusted(struct blob_attr *attr, size_t attr_len, struct blob_attr **data, const struct blob_attr_info *info, int max);
-extern struct blob_attr *blob_memdup(struct blob_attr *attr);
+extern struct blob_attr *blob_memdup(const struct blob_attr *attr);
 extern struct blob_attr *blob_put_raw(struct blob_buf *buf, const void *ptr, unsigned int len);
 
 static inline struct blob_attr *