mirror of https://github.com/getdnsapi/getdns.git
Old (not so smart) compiler warns for uninitialized variable
This commit is contained in:
parent
69b3f6f558
commit
2962baa050
|
@ -301,7 +301,7 @@ static inline int ta_iter_done(ta_iter *ta)
|
||||||
|
|
||||||
static ta_iter *ta_iter_next(ta_iter *ta)
|
static ta_iter *ta_iter_next(ta_iter *ta)
|
||||||
{
|
{
|
||||||
yxml_ret_t r;
|
yxml_ret_t r = YXML_OK;
|
||||||
yxml_t ta_x;
|
yxml_t ta_x;
|
||||||
const char *ta_start;
|
const char *ta_start;
|
||||||
int level;
|
int level;
|
||||||
|
|
Loading…
Reference in New Issue