mirror of
https://github.com/nfc-tools/libnfc.git
synced 2026-04-11 09:06:17 +00:00
nfc_init() return rather than exit on malloc error, examples fixed accordingly
This commit is contained in:
@@ -174,8 +174,7 @@ nfc_init(nfc_context **context)
|
||||
*context = nfc_context_new();
|
||||
if (!context) {
|
||||
perror("malloc");
|
||||
// TODO: not a good idea to call exit() from a library, we should change API and return error
|
||||
exit(EXIT_FAILURE);
|
||||
return;
|
||||
}
|
||||
if (!nfc_drivers)
|
||||
nfc_drivers_init();
|
||||
|
||||
Reference in New Issue
Block a user