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>2013-07-29 16:44:11 +0400
committerFelix Fietkau <nbd@openwrt.org>2013-07-29 16:44:11 +0400
commitef9b6b92df223e783a365f34998bc0f299b977f2 (patch)
tree26f4e0b01c905b09cc5f9e58867f0bd2bd10fbe3 /blob.h
parent510e4956e58727d68fbf7dea1646a344d6901c91 (diff)
blob/blobmsg: add null pointer checks to the *_for_each_attr functions, fix formatting
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'blob.h')
-rw-r--r--blob.h15
1 files changed, 8 insertions, 7 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