Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Mobile and Embedded
  4. Problem with debugging qnetworkaccessmanager

Problem with debugging qnetworkaccessmanager

Scheduled Pinned Locked Moved Mobile and Embedded
1 Posts 1 Posters 1.1k Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    gandiii
    wrote on last edited by
    #1

    hi,

    I switched my application from Qt 4.8 to Qt 5.0.2
    Now I become an illegal instruction when I try to read a website content
    with QNetworkAccessManager and I do debugging.
    !http://i41.tinypic.com/2i75z6r.png(sigill)!

    Thats the line where the debugger crashes:
    @0x41774ec0 <+0x0000> vorr q15, q15, q15@

    If I run the program it works.

    This is my code:
    @m_manager = new QNetworkAccessManager(this);
    connect(m_manager, SIGNAL(finished(QNetworkReply*)),
    this, SLOT(replyFinished(QNetworkReply*)));

    void TestClass::replyFinished(QNetworkReply* pReply)
    {
    QByteArray data=pReply->readAll();
    QString str(data);
    qDebug() << str;
    }
    @

    I am using QtCreator 3.0.0

    1 Reply Last reply
    0

    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Get Qt Extensions
    • Unsolved