Loading run-as/package.c +1 −1 Original line number Diff line number Diff line Loading @@ -111,7 +111,7 @@ map_file(const char* filename, size_t* filesize) goto EXIT; /* Ensure that the file is owned by the system user */ if ((st.st_uid != AID_SYSTEM) || (st.st_gid != AID_SYSTEM)) { if ((st.st_uid != AID_SYSTEM) || (st.st_gid != AID_PACKAGE_INFO)) { goto EXIT; } Loading sdcard/sdcard.c +263 −67 File changed.Preview size limit exceeded, changes collapsed. Show changes Loading
run-as/package.c +1 −1 Original line number Diff line number Diff line Loading @@ -111,7 +111,7 @@ map_file(const char* filename, size_t* filesize) goto EXIT; /* Ensure that the file is owned by the system user */ if ((st.st_uid != AID_SYSTEM) || (st.st_gid != AID_SYSTEM)) { if ((st.st_uid != AID_SYSTEM) || (st.st_gid != AID_PACKAGE_INFO)) { goto EXIT; } Loading