Re: [Interest] Klocwork CWE warnings in Qt5

2020-07-19 Thread Thiago Macieira
On Sunday, 19 July 2020 09:35:20 PDT Ramakanth Kesireddy wrote: > Hi, > > There are 5 different CWEs of the below type thrown by Klocwork as warnings > in the below mentioned condition in findNext():- > > https://code.woboq.org/qt5/include/qt/QtCore/qiterator.h.html#144 > inline bool findNext(

Re: [Interest] wss:// on localhost

2020-07-19 Thread Thiago Macieira
On Sunday, 19 July 2020 09:50:03 PDT Alexander Carôt wrote: > a) there is way to get rid of certificates on localhost despite using wss:// Yes, but then it's no better security than ws://. So either use insecure or use a certificate. > b) there is a reliable way of having ws:// and wss:// at the

[Interest] wss:// on localhost

2020-07-19 Thread Alexander Carôt
Hello all, after having fixed my QWebsocketServer issue I ran into another problem: Beside my properly working SSL websocket I have another websocket which serves as the technical interface between my website and a Qt application required for the service. This websocket used to work insecure (

[Interest] Klocwork CWE warnings in Qt5

2020-07-19 Thread Ramakanth Kesireddy
Hi, There are 5 different CWEs of the below type thrown by Klocwork as warnings in the below mentioned condition in findNext():- https://code.woboq.org/qt5/include/qt/QtCore/qiterator.h.html#144 inline bool findNext(const T &t) \ { while (const_iterator(n = i) != c->constEnd()) if (*i++ ==

Re: [Interest] QtWidget examples not being run

2020-07-19 Thread Ramakanth Kesireddy
Hello Thiago, The below mentioned patch along with setting environment variable QT_QPA_PLATFORM=linuxfb:rotation=180TSLIB_PARAMETERS=rotate=180:mode=640x480 worked in Qt 5.6.3 version. Thanks and Regards, Ramakanth On Fri, Jul 17, 2020 at 11:04 PM Ramakanth Kesireddy wrote: > Hello Thiago, >