struct xt_match *match;
        char *mt_name;
        u32 rev, family;
+       int err;
 
        if (tb[NFTA_MATCH_NAME] == NULL ||
            tb[NFTA_MATCH_REV] == NULL ||
        if (IS_ERR(match))
                return ERR_PTR(-ENOENT);
 
-       if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO]))
-               return ERR_PTR(-EINVAL);
+       if (match->matchsize > nla_len(tb[NFTA_MATCH_INFO])) {
+               err = -EINVAL;
+               goto err;
+       }
 
        /* This is the first time we use this match, allocate operations */
        nft_match = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
-       if (nft_match == NULL)
-               return ERR_PTR(-ENOMEM);
+       if (nft_match == NULL) {
+               err = -ENOMEM;
+               goto err;
+       }
 
        nft_match->ops.type = &nft_match_type;
        nft_match->ops.size = NFT_EXPR_SIZE(XT_ALIGN(match->matchsize));
        list_add(&nft_match->head, &nft_match_list);
 
        return &nft_match->ops;
+err:
+       module_put(match->me);
+       return ERR_PTR(err);
 }
 
 static void nft_match_release(void)
        struct xt_target *target;
        char *tg_name;
        u32 rev, family;
+       int err;
 
        if (tb[NFTA_TARGET_NAME] == NULL ||
            tb[NFTA_TARGET_REV] == NULL ||
        if (IS_ERR(target))
                return ERR_PTR(-ENOENT);
 
-       if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO]))
-               return ERR_PTR(-EINVAL);
+       if (target->targetsize > nla_len(tb[NFTA_TARGET_INFO])) {
+               err = -EINVAL;
+               goto err;
+       }
 
        /* This is the first time we use this target, allocate operations */
        nft_target = kzalloc(sizeof(struct nft_xt), GFP_KERNEL);
-       if (nft_target == NULL)
-               return ERR_PTR(-ENOMEM);
+       if (nft_target == NULL) {
+               err = -ENOMEM;
+               goto err;
+       }
 
        nft_target->ops.type = &nft_target_type;
        nft_target->ops.size = NFT_EXPR_SIZE(XT_ALIGN(target->targetsize));
        list_add(&nft_target->head, &nft_target_list);
 
        return &nft_target->ops;
+err:
+       module_put(target->me);
+       return ERR_PTR(err);
 }
 
 static void nft_target_release(void)