Add some clean-up code.

This commit is contained in:
Stephen Heumann 2019-04-14 01:46:16 -05:00
parent 990ea5fe97
commit 19b00980c9
1 changed files with 6 additions and 0 deletions

View File

@ -147,6 +147,8 @@ void CloseBrowserWindow(void) {
json_value_free(json);
json = NULL;
}
EndTCPConnection(&sess);
}
#pragma databank 0
@ -228,6 +230,8 @@ void DoSearch(void) {
sess.contentLength -= sess.readCount;
*(netBuf + (sess.contentLength)) = 0;
if (json)
json_value_free(json);
json = json_parse(netBuf, sess.contentLength);
if (json == NULL)
goto errorReturn;
@ -425,6 +429,8 @@ cleanup:
}
void DoGoAway(void) {
CloseBrowserWindow();
ResourceShutDown();
/* TODO remove menu item, other cleanup? */