Qt QNetworkAccessManager exception

I have weird QNetworkAccessManagerQt class behavior . Basically, when I do this:

QNetworkAccessManager *worker = new QNetworkAccessManager();

I get:

Exception with 0x75a1c41f, code: 0x6a6: RPC server is invalid, flags = 0x1 (execution cannot be continued) (first chance)

An exception occurs when the debugger reaches a line containing new QNetworkAccessManager();. I am doing a test in the main form, so none of the threads work, nothing can cause a memory break or something like that. I am using Qt 5.2.0 with the mscv2012 compiler. I think this error leads to the fact that later I get garbage in the server response like this:

   <div style="display: none;" class="report-link-dialog-loading"></div>

   <div class="report-link-dialog-content">
   <p>You are about to flag this item as unappropriate.</p>
   <form id='report-content-form' action='/'>
       <div>
       <input id="report_content_type" name="report_content_type" type="hidden" value=""/>
       <input id="report_content_id" name="report_content_id" type="hidden" value="test"/>
       <input id="report_content_url" name="report_content_url" type="hidden" value=""/>
       <textarea name="report_content_comment" id="report_content_comment" rows="5" cols="20"></textarea>
       </div>
   </form>
   </div>
   </div>


   </body>
   </html>
ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg

Can someone PLEASE help!

+4

Source: https://habr.com/ru/post/1548552/


All Articles