Hi guys.

I've got issue as in topic, after deployment (I used windeployqt) my application
exits immediately when QNetworkManager::get() method is called.
That problem occurs on only one computer.

Qt Code:
  1. this->_versionUrl = url.value(key).toString();
  2. ...
  3. this->_versionRequest.setUrl(QUrl(this->_versionUrl));
  4. ...
  5. void Patcher::request(const QNetworkRequest &request)
  6. {
  7. this->log(tr("Starting request: %1").arg(request.url().toString()));
  8. this->_reply = this->_manager->get(request);
  9. this->log(tr("After GET"));
  10.  
  11. this->connect(this->_reply, SIGNAL(error(QNetworkReply::NetworkError)),
  12. this, SLOT(error(QNetworkReply::NetworkError)));
  13.  
  14. this->connect(this->_reply, SIGNAL(finished()),
  15. this, SLOT(finished()));
  16.  
  17. this->connect(this->_reply, SIGNAL(downloadProgress(qint64,qint64)),
  18. this, SLOT(updateProgressBar(qint64,qint64)));
  19. }
To copy to clipboard, switch view to plain text mode 

When I run my application directly after compilation, everything works fine.

My deployment folder contains following files:

Qt Code:
  1. │ icudt53.dll
  2. │ icuin53.dll
  3. │ icuuc53.dll
  4. │ libgcc_s_dw2-1.dll
  5. │ libstdc++-6.dll
  6. │ libwinpthread-1.dll
  7. │ patcher.ini
  8. │ Qt5Core.dll
  9. │ Qt5Gui.dll
  10. │ Qt5Network.dll
  11. │ Qt5SerialPort.dll
  12. │ Qt5Svg.dll
  13. │ Qt5Widgets.dll
  14. │ qt_ca.qm
  15. │ qt_cs.qm
  16. │ qt_de.qm
  17. │ qt_fi.qm
  18. │ qt_hu.qm
  19. │ qt_it.qm
  20. │ qt_ja.qm
  21. │ qt_lv.qm
  22. │ qt_ru.qm
  23. │ qt_sk.qm
  24. │ qt_uk.qm
  25. │ quazip.dll
  26. │ MyApp.exe
  27. │ updater.log
  28. │ zlib1.dll
  29. │
  30. ├───bearer
  31. │ qgenericbearer.dll
  32. │ qnativewifibearer.dll
  33. │
  34. ├───iconengines
  35. │ qsvgicon.dll
  36. │
  37. ├───imageformats
  38. │ qdds.dll
  39. │ qgif.dll
  40. │ qicns.dll
  41. │ qico.dll
  42. │ qjp2.dll
  43. │ qjpeg.dll
  44. │ qmng.dll
  45. │ qsvg.dll
  46. │ qtga.dll
  47. │ qtiff.dll
  48. │ qwbmp.dll
  49. │ qwebp.dll
  50. │
  51. ├───platforms
  52. │ qminimal.dll
  53. │ qoffscreen.dll
  54. │ qwindows.dll
To copy to clipboard, switch view to plain text mode