[torquedev] GSSAPI segfaults, Fedora Core 6
Alex Rolfe
arolfe at mit.edu
Mon Dec 18 18:05:01 MST 2006
In src/lib/Libgss/pbsgss.c, line 516 (in pbsgss_can_get_creds), change
if (maj_stat == GSS_S_COMPLETE) {
if (creds != NULL) {
gss_release_cred(&min_stat,creds);
}
}
to
if (maj_stat == GSS_S_COMPLETE) {
if (creds != NULL) {
gss_release_cred(&min_stat,&creds);
}
}
(ie, add the & before creds. Sorry I don't have a source tree handy to
get diff from). If that fixes the problem, I'll submit a patch tomorrow.
Alex
Miles Davis <miles at CS.Stanford.EDU> writes:
>>
>> If you can put together a core file and your build (I can grab them from
>> AFS, if that's convenient), I'll try to look at it tomorrow.
>
> Thanks --
>
> http://cs.stanford.edu/people/miles/torque/ or
> /afs/cs.stanford.edu/u/miles/www/torque
>
> klist-fa just to show my credentials at the time, and the corefile is
> from qmgr. If you need more info, let me know.
>
> (I can also make pbs_server segfault by not having a kerberos ticket,
> and it looks like it may do it at the same point -- I'll see if I can
> generate more useful information from that).
>
> --
> // Miles Davis - miles at cs.stanford.edu - http://www.cs.stanford.edu/~miles
> // Computer Science Department - Computer Facilities
> // Stanford University
More information about the torquedev
mailing list