better handling of failed calloc
diff --git a/library/cmac.c b/library/cmac.c
index 39ebb87..4c25a67 100644
--- a/library/cmac.c
+++ b/library/cmac.c
@@ -173,12 +173,6 @@
     if( cipher_info == NULL )
         return( MBEDTLS_ERR_CMAC_BAD_INPUT );
 
-    ctx->K1 = mbedtls_calloc( cipher_info->block_size, sizeof( unsigned char ) );
-    ctx->K2 = mbedtls_calloc( cipher_info->block_size, sizeof( unsigned char ) );
-
-    if(ctx->K1 == NULL || ctx->K2 == NULL )
-        return MBEDTLS_ERR_CMAC_ALLOC_FAILED;
-
     mbedtls_cipher_free( &ctx->cipher_ctx );
 
     if( ( ret = mbedtls_cipher_setup( &ctx->cipher_ctx, cipher_info ) ) != 0 )
@@ -190,6 +184,16 @@
         return( ret );
     }
 
+    ctx->K1 = mbedtls_calloc( cipher_info->block_size, sizeof( unsigned char ) );
+    ctx->K2 = mbedtls_calloc( cipher_info->block_size, sizeof( unsigned char ) );
+
+    if( ctx->K1 == NULL || ctx->K2 == NULL )
+    {
+        mbedtls_free(ctx->K1);
+        mbedtls_free(ctx->K2);
+        return( MBEDTLS_ERR_CMAC_ALLOC_FAILED );
+    }
+
     return( cmac_generate_subkeys( ctx ) );
 }