标签: android
The "su" source code snippet is shown as below:
void extract_uidgids() { ...... clobberablegids = strdup(uidgids); strcpy(clobberablegids, uidgids); ...... }
why is strcpy() called after strdup()?
Thanks.