unlang_function_clear() has the warn_unused_result attribute,
hence the seemingly pointless if statements about which
coverity complains. Annotation should silence coverity.
ua = fr_tls_cache_pending_push(request, tls_session);
switch (ua) {
case UNLANG_ACTION_FAIL:
+ /* coverity[identical_branches] */
if (unlang_function_clear(request) < 0) goto error;
goto error;
ua = fr_tls_verify_cert_pending_push(request, tls_session);
switch (ua) {
case UNLANG_ACTION_FAIL:
+ /* coverity[identical_branches] */
if (unlang_function_clear(request) < 0) goto error;
goto error;