Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Qt 4.8.0 built with VS 2008 x64 in Debug. The following line causes an exception.

QTextStream tf(stdout);

This works fine in Release x64 and Debug and Release in x86. Specifically, the failure occurs on line 1163 of qfile.cpp

qint64 pos = (qint64)QT_FTELL(fh);

Why is this happening and how can I fix it?

Thanks

Edit, here is a screen shot showing the error enter image description here

share|improve this question
does it fail only in debug mode? – dschulz Apr 24 '12 at 21:25
Yes, it only fails in Debug mode. – Jon Apr 24 '12 at 21:40
Couldn't reproduce here, Linux x86_64, GCC 4.6.3. Tried debug and release. ftell() on sdtout should return -1, indicating that a pipe it's not seekable. But all this should happen gracefully. Could you post the output here, please? – dschulz Apr 24 '12 at 22:08
I'm not sure what output you're looking for, so I provided a screen shot of the exception. Let me know if you want more info. – Jon Apr 24 '12 at 22:30
Is it possible you forgot to compile one library (Log4Qt) in Debug mode ? – alexisdm Apr 24 '12 at 23:13
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.