Reply To: svn-1655 on SuSE Linux

#12412
evans02472
Participant

@gmichelson wrote:

Got same error on openSUSE 10.2 64 bit …

I configured compilation with following switches :

./configure –enable-sqlite –enable-oggvorbis –enable-flac –enable-rsp –enable-upnp -enable-=avahi

Let me know if I should try something different. Meanwhile rolling back to old version …

Thanks !

George

I think this is the same issue that I am having (also 64 bit platform):

Posted: Sat Sep 08, 2007 3:03 pm Post subject: svn-1655 – Crash reading config file ….



I am getting a crash when reading the config file, specifically on line 915 of io.c.

numread is 0 in my case and buf[numread-1] is not so cool ….

I put in a simple check in the if to make sure that nothing happens in the numread ==0 case.

modifed the line to be:

if(numread > 0 && buf[numread-1] == ‘n’) {

…tom