mirror of
https://github.com/servalproject/serval-dna.git
synced 2024-12-19 05:07:56 +00:00
Fix SEGV on empty /restful/meshms/.../conversationlist.json
This commit is contained in:
parent
776d4de894
commit
6c16b95a38
@ -206,6 +206,7 @@ static int restful_meshms_conversationlist_json(httpd_request *r, const char *re
|
||||
enum meshms_status status;
|
||||
if (meshms_failed(status = meshms_conversations_list(&r->sid1, NULL, &r->u.mclist.conv)))
|
||||
return http_request_meshms_response(r, 0, NULL, status);
|
||||
if (r->u.mclist.conv != NULL)
|
||||
meshms_conversation_iterator_start(&r->u.mclist.iter, r->u.mclist.conv);
|
||||
http_request_response_generated(&r->http, 200, CONTENT_TYPE_JSON, restful_meshms_conversationlist_json_content);
|
||||
return 1;
|
||||
@ -246,7 +247,7 @@ static int restful_meshms_conversationlist_json_content_chunk(struct http_reques
|
||||
r->u.mclist.phase = LIST_ROWS;
|
||||
return 1;
|
||||
case LIST_ROWS:
|
||||
if (r->u.mclist.iter.current == NULL) {
|
||||
if (r->u.mclist.conv == NULL || r->u.mclist.iter.current == NULL) {
|
||||
r->u.mclist.phase = LIST_END;
|
||||
// fall through...
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user