Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

> assert(p);

> if (p) {

Do you want me to have an embolism?



Haha. I was amused/bewildered by:

    void *p = realloc(...)
    // ... cast every other occurrence of p to (int *) ...
The concept may be interesting, but this particular implementation is needlessly horrible.


That's actually correct C pointer arithmetic.

When you increment a pointer, it moves ahead by the sizeof the underlying concrete type. If the pointer is to void, there is no underlying type and in fact void pointer arithmetic is disallowed by the standard. GCC lets you do it with an extention: https://gcc.gnu.org/onlinedocs/gcc-4.8.0/gcc/Pointer-Arith.h...

So in this case, since the headers for the arrays are made up of two int's it's the right thing to do to move around by sizeof(int) memory address units. You do this with a cast before the arithmetic.


My point was, why not declare the pointer as int * directly since that the only type it's used as?


to be fair, if assert is removed in release code, you still have some protection with the `if`




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: