wasm: fix network headers logic
Fixes: QTBUG-85083 Pick-to: 5.15 Change-Id: Iaf0f3365ee20fe257f3edac0e1105bdfcc5ba0da Reviewed-by: Morten Johan Sørvig <morten.sorvig@qt.io>
This commit is contained in:
parent
d782df4861
commit
762b5f09a6
@ -218,13 +218,15 @@ void QNetworkReplyWasmImplPrivate::doSendRequest()
|
||||
|
||||
QList<QByteArray> headersData = request.rawHeaderList();
|
||||
int arrayLength = getArraySize(headersData.count());
|
||||
const char* customHeaders[arrayLength];
|
||||
|
||||
if (headersData.count() > 0) {
|
||||
const char* customHeaders[arrayLength];
|
||||
int i = 0;
|
||||
for (i; i < headersData.count(); i++) {
|
||||
customHeaders[i] = headersData[i].constData();
|
||||
customHeaders[i + 1] = request.rawHeader(headersData[i]).constData();
|
||||
for (int j = 0; j < headersData.count(); j++) {
|
||||
customHeaders[i] = headersData[j].constData();
|
||||
i += 1;
|
||||
customHeaders[i] = request.rawHeader(headersData[j]).constData();
|
||||
i += 1;
|
||||
}
|
||||
customHeaders[i] = nullptr;
|
||||
attr.requestHeaders = customHeaders;
|
||||
|
Loading…
Reference in New Issue
Block a user