output/httpd: fix nullptr dereference crash bug
When `metadata_sent` is `false`, the plugin assumes there is metadata which must be sent, even if no metadata page was passed to the plugin. Initializing it to `true` avoids dereferencing this `nullptr`. Fixes #412
This commit is contained in:
@@ -98,8 +98,11 @@ class HttpdClient final
|
||||
|
||||
/**
|
||||
* If the current metadata was already sent to the client.
|
||||
*
|
||||
* Initialized to `true` because there is no metadata #Page
|
||||
* pending to be sent.
|
||||
*/
|
||||
bool metadata_sent = false;
|
||||
bool metadata_sent = true;
|
||||
|
||||
/**
|
||||
* The amount of streaming data between each metadata block
|
||||
|
Reference in New Issue
Block a user