Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/inet/addr.c

    rd5c1051 r16bfcd3  
    3939#include <stdio.h>
    4040#include <stddef.h>
    41 #include <stdlib.h>
     41#include <malloc.h>
    4242#include <bitops.h>
    4343#include <inttypes.h>
     
    584584{
    585585        int rc;
    586         int ret;
    587586
    588587        rc = ENOTSUP;
     
    590589        switch (addr->version) {
    591590        case ip_any:
    592                 ret = asprintf(bufp, "none");
    593                 if (ret < 0)
     591                rc = asprintf(bufp, "none");
     592                if (rc < 0)
    594593                        return ENOMEM;
    595594                rc = EOK;
     
    619618{
    620619        int rc;
    621         int ret;
    622620        char *astr;
    623621
     
    626624        switch (naddr->version) {
    627625        case ip_any:
    628                 ret = asprintf(bufp, "none");
    629                 if (ret < 0)
     626                rc = asprintf(bufp, "none");
     627                if (rc < 0)
    630628                        return ENOMEM;
    631629                rc = EOK;
     
    636634                        return ENOMEM;
    637635
    638                 ret = asprintf(bufp, "%s/%" PRIu8, astr, naddr->prefix);
    639                 if (ret < 0) {
     636                rc = asprintf(bufp, "%s/%" PRIu8, astr, naddr->prefix);
     637                if (rc < 0) {
    640638                        free(astr);
    641639                        return ENOMEM;
     
    649647                        return ENOMEM;
    650648
    651                 ret = asprintf(bufp, "%s/%" PRIu8, astr, naddr->prefix);
    652                 if (ret < 0) {
     649                rc = asprintf(bufp, "%s/%" PRIu8, astr, naddr->prefix);
     650                if (rc < 0) {
    653651                        free(astr);
    654652                        return ENOMEM;
Note: See TracChangeset for help on using the changeset viewer.