Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 580 of file appsearch.c.
Referenced by ACTION_AppSearchDr().
{ WCHAR *ptr, *deformatted; if (!src || !dst || !len) { if (dst) *dst = '\0'; return; } dst[0] = '\0'; /* Ignore the short portion of the path */ if ((ptr = strchrW(src, '|'))) ptr++; else ptr = src; deformat_string(package, ptr, &deformatted); if (!deformatted || strlenW(deformatted) > len - 1) { msi_free(deformatted); return; } lstrcpyW(dst, deformatted); dst[lstrlenW(deformatted)] = '\0'; msi_free(deformatted); }