diff options
-rw-r--r-- | source4/lib/registry/tools/regshell.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source4/lib/registry/tools/regshell.c b/source4/lib/registry/tools/regshell.c index 0887bc91f3..131d76fff5 100644 --- a/source4/lib/registry/tools/regshell.c +++ b/source4/lib/registry/tools/regshell.c @@ -481,6 +481,8 @@ int main(int argc, char **argv) ctx->registry = reg_common_open_remote(remote, cmdline_credentials); } else if (file != NULL) { ctx->current = reg_common_open_file(file, cmdline_credentials); + if (ctx->current == NULL) + return 1; ctx->registry = ctx->current->context; ctx->path = talloc_strdup(ctx, ""); } else { |