blobmsg: make blobmsg_len and blobmsg_data_len return unsigned value

One usually doesn't guard against negative length values in the code.

Signed-off-by: Petr Štetiar <ynezz@true.cz>
This commit is contained in:
Petr Štetiar 2019-12-10 11:53:23 +01:00
parent 2df6d35e32
commit 4dfd24ed88
2 changed files with 4 additions and 3 deletions

View file

@ -35,7 +35,8 @@ bool blobmsg_check_attr(const struct blob_attr *attr, bool name)
{
const struct blobmsg_hdr *hdr;
const char *data;
int id, len;
size_t len;
int id;
if (blob_len(attr) < sizeof(struct blobmsg_hdr))
return false;

View file

@ -86,7 +86,7 @@ static inline void *blobmsg_data(const struct blob_attr *attr)
return data;
}
static inline int blobmsg_data_len(const struct blob_attr *attr)
static inline size_t blobmsg_data_len(const struct blob_attr *attr)
{
uint8_t *start, *end;
@ -99,7 +99,7 @@ static inline int blobmsg_data_len(const struct blob_attr *attr)
return blob_len(attr) - (end - start);
}
static inline int blobmsg_len(const struct blob_attr *attr)
static inline size_t blobmsg_len(const struct blob_attr *attr)
{
return blobmsg_data_len(attr);
}