014aa4569d
We sometimes use this idiom where we ignore the result of some function such as krb5_unparse_name() and then we log something and we use the ternary operator to handle any error from that function by substituting a string like "<unknown>" or "<out-of-memory>". This yields some static analyzer complaints. Maybe casting the function's result to void will help.