[R] Unnecesary code?

hunsyntesat at hush.com hunsyntesat at hush.com
Wed Nov 18 22:15:48 CET 2009


Dear R-ers,

While browsing the R sources, I found the following piece of code 
in src\main\memory.c:

static void reset_pp_stack(void *data)
{
    R_size_t *poldpps = data;
    R_PPStackSize =  *poldpps;
}

To me, it looks like the poldpps pointer is a nuissance; can't you 
just cast the data pointer and derefer it at once? Say,

static void reset_pp_stack(void *data)
{
    R_PPStackSize = * (R_size_t *) data;
}

-- Hun




More information about the R-help mailing list