Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes: ``` *** CID 515655: Uninitialized variables (UNINIT) /home/runner/work/sssd/sssd/src/providers/krb5/krb5_child.c: 2435 in get_and_save_tgt() 2429 goto done; 2430 } 2431 2432 /* Make sure ccache is created and written as the user */ 2433 kerr = switch_to_user(); 2434 if (kerr != EOK) { >>> CID 515655: Uninitialized variables (UNINIT) >>> Using uninitialized value "ret" when calling "sss_debug_fn". 2435 DEBUG(SSSDBG_CRIT_FAILURE, "Failed to switch to user IDs: %d\n", ret); 2436 goto done; 2437 } 2438 2439 log_process_caps("Saving ccache"); 2440 ``` Reviewed-by: Jakub Vávra <[email protected]> (cherry picked from commit 110c4ae)
- Loading branch information