mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-15 09:09:36 +02:00
2019-02-05 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) that threw a segfault when processing a null RML.
This commit is contained in:
parent
3bafdc04af
commit
34e722849a
@ -18457,3 +18457,6 @@
|
||||
2019-02-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a Maintainer's Note to the 'MainObject::SchemaMap()'
|
||||
method in rddbmgr(8).
|
||||
2019-02-05 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a bug in rdairplay(1) that threw a segfault when processing
|
||||
a null RML.
|
||||
|
@ -240,6 +240,10 @@ void RDRipc::DispatchCommand()
|
||||
|
||||
// printf("RDRipc::DispatchCommand: %s\n",(const char *)ripc_accum.toUtf8());
|
||||
QStringList cmds=ripc_accum.split(" ",QString::SkipEmptyParts);
|
||||
|
||||
if(cmds.size()==0) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(cmds[0]=="PW") { // Password Response
|
||||
SendCommand("RU!");
|
||||
|
Loading…
x
Reference in New Issue
Block a user