Origin commit data
------------------
Branch: ni/coolstream
Commit: de1be9b239
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-02-23 (Thu, 23 Feb 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-02-23 12:22:30 +01:00
4 changed files with 5 additions and 5 deletions

View File

@@ -893,8 +893,8 @@ void CControlAPI::RCEmCGI(CyhookHandler *hh)
#endif
int evd = open(EVENTDEV, O_RDWR);
if (evd < 0) {
perror("opening " EVENTDEV " failed");
hh->SendError();
perror("opening event0 failed");
return;
}
if (rc_send(evd, sendcode, KEY_PRESSED) < 0) {
@@ -905,8 +905,8 @@ void CControlAPI::RCEmCGI(CyhookHandler *hh)
}
if (rc_send(evd, sendcode, KEY_RELEASED) < 0) {
perror("writing 'KEY_RELEASED' event failed");
close(evd);
hh->SendError();
close(evd);
return;
}
close(evd);