diff options
author | Dorota Moskal <dorota.moskal@tieto.com> | 2012-09-27 13:22:23 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2012-10-09 23:48:07 +0200 |
commit | 4fb72eb8abbf24e01fbe7f9a57c456d153abc83e (patch) | |
tree | 889298c5815698c74fc9c0018bdf94673233dc88 | |
parent | dc2bf6e8298ed528135717c8658ce6c92961b008 (diff) | |
download | neard-4fb72eb8abbf24e01fbe7f9a57c456d153abc83e.tar.gz neard-4fb72eb8abbf24e01fbe7f9a57c456d153abc83e.tar.bz2 neard-4fb72eb8abbf24e01fbe7f9a57c456d153abc83e.zip |
nfctype4: Call write callback when writing failed
In some cases when writing was broken, e.g. when there was
not enough space on tag, tag write callback wasn't called
and writing was left 'in progress'.
-rw-r--r-- | plugins/nfctype4.c | 40 |
1 files changed, 32 insertions, 8 deletions
diff --git a/plugins/nfctype4.c b/plugins/nfctype4.c index da5feb8..27985e4 100644 --- a/plugins/nfctype4.c +++ b/plugins/nfctype4.c @@ -633,8 +633,15 @@ static int data_write(uint32_t adapter_idx, uint32_t target_idx, int err; cookie = g_try_malloc0(sizeof(struct t4_cookie)); - if (cookie == NULL) - return -ENOMEM; + + if (cookie == NULL) { + err = -ENOMEM; + + if (cb != NULL) + cb(adapter_idx, target_idx, err); + + return err; + } cookie->adapter_idx = adapter_idx; cookie->target_idx = target_idx; @@ -666,24 +673,41 @@ static int data_write(uint32_t adapter_idx, uint32_t target_idx, cookie->ndef->offset = cookie->ndef->length; } - return err; + if (err < 0) + goto out_err; + + return 0; + +out_err: + return t4_cookie_release(err, cookie); } static int nfctype4_write(uint32_t adapter_idx, uint32_t target_idx, struct near_ndef_message *ndef, near_tag_io_cb cb) { struct near_tag *tag; + int err; DBG(""); - if (ndef == NULL || cb == NULL) - return -EINVAL; + if (ndef == NULL || cb == NULL) { + err = -EINVAL; + goto out_err; + } tag = near_tag_get_tag(adapter_idx, target_idx); - if (tag == NULL) - return -EINVAL; + if (tag == NULL) { + err = -EINVAL; + goto out_err; + } + + err = data_write(adapter_idx, target_idx, ndef, tag, cb); - return data_write(adapter_idx, target_idx, ndef, tag, cb); +out_err: + if (cb != NULL) + cb(adapter_idx, target_idx, err); + + return err; } static int check_presence(uint8_t *resp, int length, void *data) |