does this code break the strict-aliasing rules ?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi,

encountering strange results, I'm unsure whether this code is affected
by strict-aliasing rules:

static void *CreateRes(PrexecTresource eRes, void *pvVal)
{
    switch(eRes) {
    case PrexecNprintCommand:
    case PrexecNoptHost:
    case PrexecNoptHostString:
    case PrexecNoptDest:
    case PrexecNoptDestString:
    case PrexecNoptFileString:
        if (pvVal != NULL) {
            pvVal = (void*)strdup((char*)pvVal);
        }
        break;
    default:
        break;
    }

    return pvVal;
}

Specifically the casts around the 'strdup'...

Thanks,
  /haubi/



[Index of Archives]     [Linux C Programming]     [Linux Kernel]     [eCos]     [Fedora Development]     [Fedora Announce]     [Autoconf]     [The DWARVES Debugging Tools]     [Yosemite Campsites]     [Yosemite News]     [Linux GCC]

  Powered by Linux