summaryrefslogtreecommitdiff
path: root/lib/ZCkZAut.c
diff options
context:
space:
mode:
authorGravatar Karl Ramm <kcr@mit.edu>2009-03-23 13:48:03 +0000
committerGravatar Karl Ramm <kcr@mit.edu>2009-03-23 13:48:03 +0000
commit7bf9b4390e877a960a2dbcc35e848b11dd989544 (patch)
tree56a4cf6459d587503f885525b8495098574fb684 /lib/ZCkZAut.c
parent39fd7c353efd18d3daaf5d72043aa1a24cd095fc (diff)
notice->z_other_fields[notice->z_num_other_fields] is either going to
be NULL, something Wrong^TM, or off the end of z_other_fields. bad all around.
Diffstat (limited to 'lib/ZCkZAut.c')
-rw-r--r--lib/ZCkZAut.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ZCkZAut.c b/lib/ZCkZAut.c
index 2110871..19ec6d1 100644
--- a/lib/ZCkZAut.c
+++ b/lib/ZCkZAut.c
@@ -102,7 +102,7 @@ Code_t ZCheckZcodeAuthentication(ZNotice_t *notice,
*/
cksum1_base = notice->z_multinotice;
if (notice->z_num_other_fields)
- x = notice->z_other_fields[notice->z_num_other_fields];
+ x = notice->z_other_fields[notice->z_num_other_fields - 1];
else
x = cksum1_base + strlen(cksum1_base) + 1; /* multiuid */
cksum1_len = x + strlen(x) + 1 - cksum1_base;