}
catchsignals();
dbctx = config.dbinit(config.backend, false);
-
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ goto err;
+ }
+
count = cleankeys(dbctx, &keys, config.clean_policies);
logthing(LOGTHING_INFO, "%d keys cleaned.",
count);
puts("No OpenPGP packets found in input.");
end_html();
}
+err:
cleanuplogthing();
cleanupconfig();
}
initlogthing("gpgwww", config.logfile);
catchsignals();
dbctx = config.dbinit(config.backend, true);
+ if (dbctx == NULL) {
+ puts("Failed to open key database.");
+ goto err;
+ }
inithash();
logthing(LOGTHING_NOTICE, "Looking for path from 0x%016" PRIX64
" to 0x%016"
}
destroyhash();
dbctx->cleanupdb(dbctx);
+
+err:
cleanuplogthing();
cleanupconfig();
initlogthing("lookup", config.logfile);
catchsignals();
dbctx = config.dbinit(config.backend, false);
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ goto err;
+ }
switch (op) {
case OP_GET:
case OP_HGET:
puts("Unknown operation!");
}
dbctx->cleanupdb(dbctx);
+err:
cleanuplogthing();
cleanupconfig();
}
usage();
} else if (!strcmp("dump", argv[optind])) {
dbctx = config.dbinit(config.backend, true);
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ rc = EXIT_FAILURE;
+ goto err;
+ }
dumpstate.count = dumpstate.filenum = 0;
dumpstate.maxcount = 100000;
dumpstate.fd = -1;
result);
dbctx = config.dbinit(config.backend, false);
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ rc = EXIT_FAILURE;
+ goto err;
+ }
result = cleankeys(dbctx, &keys,
config.clean_policies);
logthing(LOGTHING_INFO, "%d keys cleaned.",
}
} else if (!strcmp("clean", argv[optind])) {
dbctx = config.dbinit(config.backend, true);
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ rc = EXIT_FAILURE;
+ goto err;
+ }
if (binary) {
result = read_openpgp_stream(stdin_getchar, NULL,
&packets, 0);
}
}
dbctx = config.dbinit(config.backend, false);
+ if (dbctx == NULL) {
+ logthing(LOGTHING_ERROR,
+ "Failed to open key database.");
+ rc = EXIT_FAILURE;
+ goto err;
+ }
if (!strcmp("index", argv[optind])) {
find_keys(dbctx, search, keyid, &fingerprint, ishex,
isfp, dispfp, skshash,
usage();
}
+err:
cleanuplogthing();
cleanupconfig();
free(configfile);