From: Kristian Høgsberg Date: Sat, 21 Jun 2008 02:26:41 +0000 (-0400) Subject: Return if we fail to open root. X-Git-Tag: 0.1~116 X-Git-Url: http://project.juiblex.co.uk/git/?a=commitdiff_plain;h=20616aa76defb7a07971842861b7bed2c4049bd6;p=razor.git Return if we fail to open root. --- diff --git a/src/main.c b/src/main.c index 40e7674..914e8a8 100644 --- a/src/main.c +++ b/src/main.c @@ -674,6 +674,9 @@ command_install(int argc, const char *argv[]) } root = razor_root_open(install_root); + if (root == NULL) + return 1; + system = razor_root_get_system_set(root); upstream = razor_set_open(rawhide_repo_filename); trans = razor_transaction_create(system, upstream);