mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-08 16:37:46 +02:00
2023-05-17 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the rdxport service that caused temporary directories to be left behind after processing audio imports. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
41224a393a
commit
40cb18a27f
@ -24128,3 +24128,6 @@
|
|||||||
* Fixed a vulnerabilities in 'RDFormPost' that could allow maximum
|
* Fixed a vulnerabilities in 'RDFormPost' that could allow maximum
|
||||||
post length restrictions to be bypassed by use of a maliciously
|
post length restrictions to be bypassed by use of a maliciously
|
||||||
crafted HTTP transaction.
|
crafted HTTP transaction.
|
||||||
|
2023-05-17 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in the rdxport service that caused temporary
|
||||||
|
directories to be left behind after processing audio imports.
|
||||||
|
@ -113,7 +113,7 @@ Xport::Xport(QObject *parent)
|
|||||||
// Generate Post
|
// Generate Post
|
||||||
//
|
//
|
||||||
xport_post=new RDFormPost(RDFormPost::AutoEncoded,
|
xport_post=new RDFormPost(RDFormPost::AutoEncoded,
|
||||||
rda->system()->maxPostLength(),false);
|
rda->system()->maxPostLength(),true);
|
||||||
if(xport_post->error()!=RDFormPost::ErrorOk) {
|
if(xport_post->error()!=RDFormPost::ErrorOk) {
|
||||||
XmlExit(xport_post->errorString(xport_post->error()),400,"rdxport.cpp",
|
XmlExit(xport_post->errorString(xport_post->error()),400,"rdxport.cpp",
|
||||||
LINE_NUMBER);
|
LINE_NUMBER);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user