minor bug in httpinput.cpp

2000-10-24 Thread Scott McCaskill
Right around line 507 is the following code: file = string(strchr(m_path + 7, '/')); Problem is, this blows up if m_path is something like "http://205.188.245.131:8038", since strchr is returning null and the string constructor doesn't like that (on windows anyway). I worked around it like

Exception in Musicbrowser.ui

2000-10-24 Thread ROBERTS, MARK
All, I'm getting an "Unhandled exception in Freeamp.exe (MUSICBROWSER.UI): 0xC094: Integer divide by Zero" when I click on "Recommend Playlist" or "Sounds Like Recommendation" under the Relatable menu item in the music browser. Everything else seems to be working and I had no compile

Re: minor bug in httpinput.cpp

2000-10-24 Thread rob
On 24 Oct, Scott McCaskill wrote: Right around line 507 is the following code: file = string(strchr(m_path + 7, '/')); Problem is, this blows up if m_path is something like "http://205.188.245.131:8038", since strchr is returning null and the string constructor doesn't like that (on