]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/netinet/ip_fw.c
xnu-201.tar.gz
[apple/xnu.git] / bsd / netinet / ip_fw.c
index 8705c5bab21fe801c4bd18c8f26a867f7e7d00d9..e652e90d9b335a3086cc39a06e01bf5726cfcb56 100644 (file)
@@ -898,8 +898,8 @@ add_entry(struct ip_fw_head *chainptr, struct ip_fw *frwl)
        u_short nbr = 0;
        int s;
 
-       fwc = _MALLOC(sizeof *fwc, M_IPFW, M_DONTWAIT);
-       ftmp = _MALLOC(sizeof *ftmp, M_IPFW, M_DONTWAIT);
+       fwc = _MALLOC(sizeof *fwc, M_IPFW, M_NOWAIT);
+       ftmp = _MALLOC(sizeof *ftmp, M_IPFW, M_NOWAIT);
        if (!fwc || !ftmp) {
                dprintf(("%s MALLOC said no\n", err_prefix));
                if (fwc)  FREE(fwc, M_IPFW);