This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH][BZ #13724] Do not segfault in pthread_setname_np (x, NULL)


OndÅej BÃlka <neleai@seznam.cz> writes:

> Then do you agree with crashing at pthread_getname_np and waitpid?
>
>
> diff --git a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
> index f5dc336..e0582fa 100644
> --- a/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
> +++ b/nptl/sysdeps/unix/sysv/linux/pthread_getname.c
> @@ -41,6 +41,10 @@ pthread_getname_np (th, buf, len)
>    if (len < TASK_COMM_LEN)
>      return ERANGE;
>  
> +  /* Crash when null buffer is supplied.  */
> +  if (len)
> +    buf[0] = '\0';
> +

Nothing should be done here.  Just let any error generated by the
subsequent calls be reported back to the caller.

Andreas.

-- 
Andreas Schwab, SUSE Labs, schwab@suse.de
GPG Key fingerprint = 0196 BAD8 1CE9 1970 F4BE  1748 E4D4 88E3 0EEA B9D7
"And now for something completely different."


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]