ok, I have a QStringList that I am attempting to write to a file

Read_Request_Time.at(i) = "109,120,085";


if (Read_Request_Time.at(i).size() > 0)
out << "Read_Request" << "\t" << Read_Request_Time.at(i) << "\n";

the write causes a runtime error and crashed the application.

I am opening the file correctly, other writes succeed.

What is wrong with this code? I don't see an error?

thanks

John