Comment 3 for bug 706670

Revision history for this message
eMTee (realprogger) wrote :

Yes, it does, the crash looks like because parameters are passed to strftime without any check in Util::formatTime and as per http://msdn.microsoft.com/en-us/library/ksazx244.aspx the default behavior of the C Runtime when an invalid parameter is found is to crash the program.

Possible solution is in http://msdn.microsoft.com/en-us/library/a9yf33zb.aspx or maybe a check for parameter validity before calling strftime...