diff options
Diffstat (limited to 'src/lutris.c')
-rw-r--r-- | src/lutris.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lutris.c b/src/lutris.c index a3caa3d..18703d6 100644 --- a/src/lutris.c +++ b/src/lutris.c @@ -1,4 +1,5 @@ +#include <stddef.h> #include <stdio.h> #include <string.h> #include <linux/limits.h> @@ -231,6 +232,8 @@ struct script_t lutris_getInstaller(char* installername) installer.files = NULL; installer.filecount = 0; installer.error = NONE; + installer.variables = NULL; + installer.variablecount = 0; if (installername) { |