From kde-core-devel Fri Nov 01 00:08:05 2002 From: Harri Porten Date: Fri, 01 Nov 2002 00:08:05 +0000 To: kde-core-devel Subject: Re: vulnerabilty fixed X-MARC-Message: https://marc.info/?l=kde-core-devel&m=103610940825761 On Thu, 31 Oct 2002, Alexander Neundorf wrote: > + char *logname=getenv("LOGNAME"); > + if (strlen(logname)>60) You may want to check for a NULL pointer here. Or use qstrlen() if you don't want to handle this case exceptionally. Harri.