Does the QNetworkRequest passed into QNetworkAccessManager::get() need to persist until the corresponding QNetworkReply receives all data? Or is it safe to let it be destroyed immediately after the QNetworkReply is constructed? (i.e. is it safe to use a local variable that will disappear shortly after get() is called?)

I've just smoothed out a crash-riddled session, but am still paranoid about hidden bugs. Thanks in advance!