]> err.no Git - yubikey-personalization/commitdiff
change ykp_free_ndef to return int
authorKlas Lindfors <klas@yubico.com>
Thu, 20 Sep 2012 09:02:32 +0000 (11:02 +0200)
committerKlas Lindfors <klas@yubico.com>
Thu, 20 Sep 2012 09:02:32 +0000 (11:02 +0200)
ykpers.c
ykpers.h

index 6ff8086700312ff7ccef65a456d24d384c44099e..2c5e6b69e597167f1f8ce4804eb441ab3263f2c5 100644 (file)
--- a/ykpers.c
+++ b/ykpers.c
@@ -381,7 +381,7 @@ YK_NDEF *ykp_alloc_ndef(void)
        return 0;
 }
 
-void ykp_free_ndef(YK_NDEF *ndef)
+int ykp_free_ndef(YK_NDEF *ndef)
 {
        if(ndef)
        {
index a2c410b4004a21c786f1482e5607625979eb0f12..9a142f013be7556657bc9149f2b53db597d122cf 100644 (file)
--- a/ykpers.h
+++ b/ykpers.h
@@ -68,7 +68,7 @@ int ykp_HMAC_key_from_hex(YKP_CONFIG *cfg, const char *hexkey);
 
 /* Functions for constructing the YK_NDEF struct before writing it to a neo */
 YK_NDEF *ykp_alloc_ndef(void);
-void ykp_free_ndef(YK_NDEF *ndef);
+int ykp_free_ndef(YK_NDEF *ndef);
 int ykp_construct_ndef_uri(YK_NDEF *ndef, const char *uri);
 int ykp_construct_ndef_text(YK_NDEF *ndef, const char *text, const char *lang, bool isutf16);
 int ykp_set_ndef_access_code(YK_NDEF *ndef, unsigned char *access_code);