Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/blob.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-10-06 19:57:13 +0400
committerFelix Fietkau <nbd@openwrt.org>2011-10-06 19:57:13 +0400
commit51711be6251be4ae5e53f9369ae04598b06df0e7 (patch)
treeb7df042f992304d1582366210fade3754018ef69 /blob.h
parent7c80b7c5147ac55455464224bd0a3f6aac0b51d0 (diff)
fix more instances of uninitialized padding bytes
Diffstat (limited to 'blob.h')
-rw-r--r--blob.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/blob.h b/blob.h
index 460ea5e..b21c5bb 100644
--- a/blob.h
+++ b/blob.h
@@ -204,6 +204,7 @@ blob_next(const struct blob_attr *attr)
return (struct blob_attr *) ((char *) attr + blob_pad_len(attr));
}
+extern void blob_fill_pad(struct blob_attr *attr);
extern void blob_set_raw_len(struct blob_attr *attr, unsigned int len);
extern bool blob_attr_equal(const struct blob_attr *a1, const struct blob_attr *a2);
extern int blob_buf_init(struct blob_buf *buf, int id);