summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/krb5/ccache/ser_cc.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/lib/krb5/ccache/ser_cc.c b/src/lib/krb5/ccache/ser_cc.c
index d2abf532d..88e6a137d 100644
--- a/src/lib/krb5/ccache/ser_cc.c
+++ b/src/lib/krb5/ccache/ser_cc.c
@@ -73,7 +73,7 @@ krb5_ccache_size(krb5_context kcontext, krb5_pointer arg, size_t *sizep)
* krb5_int32 for KV5M_CCACHE
*/
required = sizeof(krb5_int32) * 3;
- if (ccache->ops && ccache->ops->prefix)
+ if (ccache->ops->prefix)
required += (strlen(ccache->ops->prefix)+1);
/*
@@ -115,12 +115,11 @@ krb5_ccache_externalize(krb5_context kcontext, krb5_pointer arg, krb5_octet **bu
(void) krb5_ser_pack_int32(KV5M_CCACHE, &bp, &remain);
/* Calculate the length of the name */
- namelen = (ccache->ops && ccache->ops->prefix) ?
- strlen(ccache->ops->prefix)+1 : 0;
+ namelen = ccache->ops->prefix ? strlen(ccache->ops->prefix)+1 : 0;
fnamep = krb5_cc_get_name(kcontext, ccache);
namelen += (strlen(fnamep)+1);
- if (ccache->ops && ccache->ops->prefix) {
+ if (ccache->ops->prefix) {
if (asprintf(&ccname, "%s:%s", ccache->ops->prefix, fnamep) < 0)
ccname = NULL;
} else