Maksim Ivanov
Maksim Ivanov
Currently, one has to run "source env/activate" before being able to compile the code, otherwise the Make will fail with unclear errors (like complaining about the NACL_SDK_ROOT directory). We should...
Currently, the API exposed by the Connector App is described in the root README file only briefly. We should find a way to document it properly (including the details of...
This error is displayed in the logs when a fatal error occurs and the app is about to restart itself. This isn't a critical issue as the restart still happens,...
Today, a disconnection of a device results in a bunch (~6) warning messages, emitted into the Connector's app JS console. Those log messages are harmless and don't designate any actual...
Currently, the transfer timeouts are handled like a transfer error. This comes through a number of places in the code. One example is the code that talks to chrome.usb: the...
The existing protocol has several issues, mainly: - **Client restart handling is bad.** Connector app may start processing the commands from the restarted app in the same environment as it...
1. Separate out into a separate file the relevant pieces from the generic README. 2. Document the way to use the JS client helper library without Closure Library and/or Compiler....
Currently, when an admin policy tells Connector to permit some client app which is not whitelisted, the Connector's window will display client's identifier instead of app's name: ![screenshot from 2016-07-04...
- The official doc on compilation levels doesn't explain that most checks get enabled in the ADVANCED compilation mode only: https://developers.google.com/closure/compiler/docs/compilation_levels - The Wiki page on compiler warnings misguides that...
After a reader disappears, `RFReaderInfoById()` (for example, called from `SCardDisconnect()`) might try dereferencing an `READER_CONTEXT::handlesList` value that's already destroyed by the hotplug thread in `removeReader()`. UAF place: https://github.com/LudovicRousseau/PCSC/blob/c35130f2215b75c6d54c4f0162d68548a6de4bab/src/readerfactory.c#L860 Deallocation place:...