efl-csharp: Fix uninitialized struct.

Summary:
Could trigger bogus generation with phantom calls thinking beta is
enabled from the want_beta field of the options struct.

Reviewers: vitor.sousa

Reviewed By: vitor.sousa

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D8151
This commit is contained in:
Lauro Moura 2019-03-07 13:06:33 -03:00 committed by Vitor Sousa
parent c67f199b2f
commit 116572db5e
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ _assert_not_dup(std::string option, std::string value)
static eolian_mono::options_type
opts_get(int argc, char **argv)
{
eolian_mono::options_type opts;
eolian_mono::options_type opts{};
const struct option long_options[] =
{