malloc -> xmalloc
[oweals/opkg-lede.git] / libopkg / opkg_pathfinder.c
index 6198c0414714469fdadf5682cff5e55c3e7afb77..f1bd9407bdd91b119029260a33c1bb074aa7eb14 100644 (file)
@@ -37,9 +37,9 @@ static int pathfinder_verify_callback(X509_STORE_CTX *ctx, void *arg)
     const char *hex = "0123456789ABCDEF";
     size_t size = i2d_X509(ctx->cert, NULL);
     unsigned char *keybuf, *iend;
-    iend = keybuf = malloc(size);
+    iend = keybuf = xmalloc(size);
     i2d_X509(ctx->cert, &iend);
-    char *certdata_str = malloc(size * 2 + 1);
+    char *certdata_str = xmalloc(size * 2 + 1);
     unsigned char *cp = keybuf;
     char *certdata_str_i = certdata_str;
     while (cp < iend)