summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--lib/rtnl.c9
-rw-r--r--lib/struct.c9
2 files changed, 12 insertions, 6 deletions
diff --git a/lib/rtnl.c b/lib/rtnl.c
index 3d0965b..70f75d2 100644
--- a/lib/rtnl.c
+++ b/lib/rtnl.c
@@ -1345,10 +1345,13 @@ uc_nl_convert_attrs(struct nl_msg *msg, void *buf, size_t buflen, size_t headsiz
if (!tb)
return false;
- if (buflen > headsize)
- nla_parse(tb, maxattr, buf + headsize, buflen - headsize, NULL);
- else
+ if (buflen > headsize) {
+ if (maxattr)
+ nla_parse(tb, maxattr, buf + headsize, buflen - headsize, NULL);
+ }
+ else {
structlen = buflen;
+ }
for (i = 0; i < nattrs; i++) {
if (attrs[i].attr == 0 && (uintptr_t)attrs[i].auxdata >= structlen)
diff --git a/lib/struct.c b/lib/struct.c
index 5d301db..bd418b2 100644
--- a/lib/struct.c
+++ b/lib/struct.c
@@ -2182,17 +2182,17 @@ overflow:
static uc_value_t *
uc_pack_common(uc_vm_t *vm, size_t nargs, formatstate_t *state, size_t argoff)
{
+ size_t ncode, arg, off;
formatcode_t *code;
- size_t ncode, off;
uc_string_t *buf;
ssize_t size, n;
const void *p;
- for (ncode = 0, code = &state->codes[0], off = 0;
+ for (ncode = 0, code = &state->codes[0], arg = argoff, off = 0;
ncode < state->ncodes;
code = &state->codes[++ncode]) {
if (code->fmtdef->format == '*') {
- uc_value_t *v = uc_fn_arg(argoff + ncode);
+ uc_value_t *v = uc_fn_arg(arg++);
if (ucv_type(v) != UC_STRING)
continue;
@@ -2204,6 +2204,9 @@ uc_pack_common(uc_vm_t *vm, size_t nargs, formatstate_t *state, size_t argoff)
else
off += code->size;
}
+ else {
+ arg += code->repeat;
+ }
}
buf = xalloc(sizeof(*buf) + state->size + off + 1);