Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Weird crash of QNetworkAccessManager::post()
Forum Updated to NodeBB v4.3 + New Features

Weird crash of QNetworkAccessManager::post()

Scheduled Pinned Locked Moved Solved General and Desktop
22 Posts 7 Posters 8.5k Views 2 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.
  • M Offline
    M Offline
    MemphisWang
    wrote on last edited by
    #13

    I don't understand, it's so weird. and my program can't even finish it's login work now.
    if it's a bug, it's a huge bug, it will not be allowed to release. so I guess there must be some thing wrong with my code.
    can any body repeat this problem? here is my header for your convenience: http://paste2.org/ZABXaUUJ

    1 Reply Last reply
    0
    • T Offline
      T Offline
      tomma
      wrote on last edited by
      #14

      Found report for that issue:
      https://bugreports.qt.io/browse/QTBUG-56747

      1 Reply Last reply
      2
      • T tomma

        That crash stack seems to point to issue with getting proxy configuration from platform.
        You could try disabling proxy for QNAM using setProxy(QNetworkProxy::NoProxy).
        Most likely some bug with Mac OS integration and you should report it if not reported already.

        M Offline
        M Offline
        MemphisWang
        wrote on last edited by
        #15

        @tomma Thannnnnnnnnnnnnnnnnks men! you are so amazing! It works when i set my mNetworkAccessManager's proxy to NoProxy!

        kshegunovK 1 Reply Last reply
        0
        • M MemphisWang

          @tomma Thannnnnnnnnnnnnnnnnks men! you are so amazing! It works when i set my mNetworkAccessManager's proxy to NoProxy!

          kshegunovK Offline
          kshegunovK Offline
          kshegunov
          Moderators
          wrote on last edited by
          #16

          As a side note, this delete:

          delete this->mNetworkReply;
          

          is rather suspicious. In some use cases (e.g. using multiple threads) you might have events pending for that object in the event loop. Consider using QObject::deleteLater() instead.

          Read and abide by the Qt Code of Conduct

          VRoninV M 2 Replies Last reply
          2
          • kshegunovK kshegunov

            As a side note, this delete:

            delete this->mNetworkReply;
            

            is rather suspicious. In some use cases (e.g. using multiple threads) you might have events pending for that object in the event loop. Consider using QObject::deleteLater() instead.

            VRoninV Offline
            VRoninV Offline
            VRonin
            wrote on last edited by
            #17

            @kshegunov or, given the use case, use QScopedPointer<QNetworkReply,QScopedPointerDeleteLater> mNetworkReply;

            "La mort n'est rien, mais vivre vaincu et sans gloire, c'est mourir tous les jours"
            ~Napoleon Bonaparte

            On a crusade to banish setIndexWidget() from the holy land of Qt

            kshegunovK 1 Reply Last reply
            1
            • VRoninV VRonin

              @kshegunov or, given the use case, use QScopedPointer<QNetworkReply,QScopedPointerDeleteLater> mNetworkReply;

              kshegunovK Offline
              kshegunovK Offline
              kshegunov
              Moderators
              wrote on last edited by
              #18

              Yes indeed. It does the same thing though. ;)

              Read and abide by the Qt Code of Conduct

              1 Reply Last reply
              0
              • kshegunovK kshegunov

                As a side note, this delete:

                delete this->mNetworkReply;
                

                is rather suspicious. In some use cases (e.g. using multiple threads) you might have events pending for that object in the event loop. Consider using QObject::deleteLater() instead.

                M Offline
                M Offline
                MemphisWang
                wrote on last edited by
                #19

                @kshegunov You are right. I'll use deleteLater next time. and I have a further questions for this:
                if i have a pointer to a QObject this->pObj,

                this->pObj = new Foo();
                this->pObj->doingSomeThing();
                this->pObj->deleteLater();
                

                can i continue to use this pointer immediately

                this->pObj = new Foo();
                this->pObj->doingSomeThing();
                

                Is it OK?

                kshegunovK 1 Reply Last reply
                0
                • M MemphisWang

                  @kshegunov You are right. I'll use deleteLater next time. and I have a further questions for this:
                  if i have a pointer to a QObject this->pObj,

                  this->pObj = new Foo();
                  this->pObj->doingSomeThing();
                  this->pObj->deleteLater();
                  

                  can i continue to use this pointer immediately

                  this->pObj = new Foo();
                  this->pObj->doingSomeThing();
                  

                  Is it OK?

                  kshegunovK Offline
                  kshegunovK Offline
                  kshegunov
                  Moderators
                  wrote on last edited by
                  #20

                  @MemphisWang said in Weird crash of QNetworkAccessManager::post():

                  can i continue to use this pointer immediately

                  Yes, you can even use the same object immediately.

                  this->pObj = new Foo();
                  this->pObj->doingSomeThing();
                  this->pObj->deleteLater();
                  
                  this->pObj->someOtherThing(); //< Valid until you return control to the event loop
                  

                  Read and abide by the Qt Code of Conduct

                  M 1 Reply Last reply
                  1
                  • kshegunovK kshegunov

                    @MemphisWang said in Weird crash of QNetworkAccessManager::post():

                    can i continue to use this pointer immediately

                    Yes, you can even use the same object immediately.

                    this->pObj = new Foo();
                    this->pObj->doingSomeThing();
                    this->pObj->deleteLater();
                    
                    this->pObj->someOtherThing(); //< Valid until you return control to the event loop
                    
                    M Offline
                    M Offline
                    MemphisWang
                    wrote on last edited by
                    #21

                    @kshegunov that's nice, and convenient. I can be less careful about memory and care more about business logic.

                    kshegunovK 1 Reply Last reply
                    0
                    • M MemphisWang

                      @kshegunov that's nice, and convenient. I can be less careful about memory and care more about business logic.

                      kshegunovK Offline
                      kshegunovK Offline
                      kshegunov
                      Moderators
                      wrote on last edited by
                      #22

                      Well, it's "invented" not to make you less careful about memory, but exactly because deleteing an object that's referenced in a queued event in the event loop is pretty nasty - I'd segfault.

                      Read and abide by the Qt Code of Conduct

                      1 Reply Last reply
                      1

                      • Login

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