Skip to content
Snippets Groups Projects
Commit 18e62041 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

[dnssec] fix decoding of uint32_t values from JSON

parent 5b65297c
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ int decode_uint32(const json_t *value, void *result)
return r;
}
uint16_t *uint32_ptr = result;
uint32_t *uint32_ptr = result;
*uint32_ptr = decoded;
return DNSSEC_EOK;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment