2021-04-15 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in 'rdxport.cgi' that broke the build when compiling
	without the '--enable-rdxport-debug' switch.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-04-15 12:01:50 -04:00
parent 92d1699a9d
commit c5ab8337de
2 changed files with 4 additions and 1 deletions

View File

@ -21436,3 +21436,6 @@
directives in the rd.conf(5) man page.
2021-04-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed bugs that broke the build when MP4 support was enabled.
2021-04-15 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in 'rdxport.cgi' that broke the build when compiling
without the '--enable-rdxport-debug' switch.

View File

@ -465,7 +465,7 @@ void Xport::XmlExit(const QString &str,int code,const QString &srcfile,
RDXMLResult(str.toUtf8(),code,err);
}
#else
RDXMLResult(str,code,err);
RDXMLResult(str.toUtf8(),code,err);
#endif // RDXPORT_DEBUG
exit(0);
}