mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-27 14:09:38 +02:00
2019-02-11 Fred Gleason <fredg@paravelsystems.com>
Fixed a bug in rdcatchd(8) that could cause invalid filenames to be generated for temporary files.
This commit is contained in:
parent
e6fb2dbb31
commit
188d134d70
@ -18467,3 +18467,6 @@
|
|||||||
2019-02-07 Fred Gleason <fredg@paravelsystems.com>
|
2019-02-07 Fred Gleason <fredg@paravelsystems.com>
|
||||||
Fixed a regression in rdlibrary(1) that made it impossible to
|
Fixed a regression in rdlibrary(1) that made it impossible to
|
||||||
enter apostrophes or quotes in RMLs.
|
enter apostrophes or quotes in RMLs.
|
||||||
|
2019-02-11 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
Fixed a bug in rdcatchd(8) that could cause invalid filenames
|
||||||
|
to be generated for temporary files.
|
||||||
|
@ -2550,9 +2550,8 @@ QString MainObject::BuildTempName(int event,QString str)
|
|||||||
|
|
||||||
QString MainObject::BuildTempName(CatchEvent *evt,QString str)
|
QString MainObject::BuildTempName(CatchEvent *evt,QString str)
|
||||||
{
|
{
|
||||||
return QString().sprintf("%s/rdcatchd-%s-%d.%s",(const char *)catch_temp_dir,
|
return catch_temp_dir+"/rdcatchd="+str+
|
||||||
(const char *)str,evt->id(),
|
QString().sprintf("%u-%u",evt->id(),getpid());
|
||||||
(const char *)GetFileExtension(evt->resolvedUrl()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user