diff options
author | Andreas Schneider <asn@samba.org> | 2012-08-02 12:41:49 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2013-04-29 13:06:00 +0200 |
commit | 4a87a7ab61ae965cef6a8ffe2d017d1e877cce74 (patch) | |
tree | 1696b2d847c478f83ac89fce137cc733d7368538 /source3/utils/regedit.c | |
parent | 86f88ee7b074fc8193a445e0c8ece58c3058b6c3 (diff) | |
download | samba-4a87a7ab61ae965cef6a8ffe2d017d1e877cce74.tar.gz samba-4a87a7ab61ae965cef6a8ffe2d017d1e877cce74.tar.xz samba-4a87a7ab61ae965cef6a8ffe2d017d1e877cce74.zip |
regedit: Don't panic if we can't open the file.
Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils/regedit.c')
-rw-r--r-- | source3/utils/regedit.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source3/utils/regedit.c b/source3/utils/regedit.c index 554c31e089..14215cb775 100644 --- a/source3/utils/regedit.c +++ b/source3/utils/regedit.c @@ -353,7 +353,11 @@ int main(int argc, char **argv) /* some simple tests */ rv = reg_open_samba3(frame, &ctx); - SMB_ASSERT(W_ERROR_IS_OK(rv)); + if (!W_ERROR_IS_OK(rv)) { + TALLOC_FREE(frame); + + return 1; + } display_test_window(frame, ctx); |