- Uninitialised jsongen in gcli-forks causes an infinite loop in fit(), where
capacity is doubled until a string fits, but capacity is 0 so doubling does
nothing
- Also change what looks to me like unbalanced gcli_jsongen_{begin,end}_*
calls in src/github/issues.c
Actually, no that I am thinking about this... maybe I should change
the return type of the jsongen* functions to void and simply assert
that whatever we pop off the scope stack is of the correct type.
Another solution is to simply add assertions in various places
(which are removed if compiled in non-debug mode).
I'll work on a patch for likely solution #2.
Nico