i saw somebody on #tor paste a string where these were

null. better safe than sorry.


svn:r8767
This commit is contained in:
Roger Dingledine 2006-10-20 00:12:02 +00:00
parent 7f8d9e8af2
commit dcd33ef599

View file

@ -156,6 +156,8 @@ crypto_log_errors(int severity, const char *doing)
lib = (const char*)ERR_lib_error_string(err);
func = (const char*)ERR_func_error_string(err);
if (!msg) msg = "(null)";
if (!lib) lib = "(null)";
if (!func) func = "(null)";
if (doing) {
log(severity, LD_CRYPTO, "crypto error while %s: %s (in %s:%s)",
doing, msg, lib, func);