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
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-07-29 16:44:11 +0400
committerFelix Fietkau <nbd@openwrt.org>2013-07-29 16:44:11 +0400
commitef9b6b92df223e783a365f34998bc0f299b977f2 (patch)
tree26f4e0b01c905b09cc5f9e58867f0bd2bd10fbe3
parent510e4956e58727d68fbf7dea1646a344d6901c91 (diff)
blob/blobmsg: add null pointer checks to the *_for_each_attr functions, fix formatting
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r--blob.h15
-rw-r--r--blobmsg.h9
2 files changed, 13 insertions, 11 deletions
diff --git a/blob.h b/blob.h
index 44266e8..88ee01c 100644
--- a/blob.h
+++ b/blob.h
@@ -231,16 +231,17 @@ blob_put_u64(struct blob_buf *buf, int id, uint64_t val)
#define __blob_for_each_attr(pos, attr, rem) \
for (pos = (void *) attr; \
- rem > 0 && (blob_pad_len(pos) <= rem) && \
- (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
- rem -= blob_pad_len(pos), pos = blob_next(pos))
+ rem > 0 && (blob_pad_len(pos) <= rem) && \
+ (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
+ rem -= blob_pad_len(pos), pos = blob_next(pos))
#define blob_for_each_attr(pos, attr, rem) \
- for (rem = blob_len(attr), pos = blob_data(attr); \
- rem > 0 && (blob_pad_len(pos) <= rem) && \
- (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
- rem -= blob_pad_len(pos), pos = blob_next(pos))
+ for (rem = attr ? blob_len(attr) : 0, \
+ pos = attr ? blob_data(attr) : 0; \
+ rem > 0 && (blob_pad_len(pos) <= rem) && \
+ (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
+ rem -= blob_pad_len(pos), pos = blob_next(pos))
#endif
diff --git a/blobmsg.h b/blobmsg.h
index 3eeec9b..1e497f7 100644
--- a/blobmsg.h
+++ b/blobmsg.h
@@ -204,9 +204,10 @@ void blobmsg_printf(struct blob_buf *buf, const char *name, const char *format,
/* blobmsg to json formatting */
#define blobmsg_for_each_attr(pos, attr, rem) \
- for (rem = blobmsg_data_len(attr), pos = blobmsg_data(attr); \
- rem > 0 && (blob_pad_len(pos) <= rem) && \
- (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
- rem -= blob_pad_len(pos), pos = blob_next(pos))
+ for (rem = attr ? blobmsg_data_len(attr) : 0, \
+ pos = attr ? blobmsg_data(attr) : 0; \
+ rem > 0 && (blob_pad_len(pos) <= rem) && \
+ (blob_pad_len(pos) >= sizeof(struct blob_attr)); \
+ rem -= blob_pad_len(pos), pos = blob_next(pos))
#endif