[281] in Kerberos_V5_Development
Re: Authorization data support.
wesommer@ATHENA.MIT.EDU (wesommer@ATHENA.MIT.EDU)
Wed Sep 12 17:15:44 1990
The particular problem is that the code generated for decoding arrays
is of the form:
ptr = &array[0];
for (elt=first; elt; elt=elt->next) {
*ptr = frob(elt);
}
of course, "frob" is open-coded and is about a page and a half of
code, so it takes a while before you figure out that the pointer
is never getting advanced.. ARRGH!
The bug is somewhere in isode-6.0/pepy/posy.c; I haven't yet figured
out how to get my fingers on the gensym'ed name which is "ptr".