mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-12 07:42:35 +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>
|
||||
Fixed a regression in rdlibrary(1) that made it impossible to
|
||||
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)
|
||||
{
|
||||
return QString().sprintf("%s/rdcatchd-%s-%d.%s",(const char *)catch_temp_dir,
|
||||
(const char *)str,evt->id(),
|
||||
(const char *)GetFileExtension(evt->resolvedUrl()));
|
||||
return catch_temp_dir+"/rdcatchd="+str+
|
||||
QString().sprintf("%u-%u",evt->id(),getpid());
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user