You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto header = static_cast<AssemblyStoreHeader*>(data_start);
165
+
166
+
if (header->magic != ASSEMBLY_STORE_MAGIC) {
167
+
log_fatal (LOG_ASSEMBLY, "Assembly store '%s' is not a valid .NET for Android assembly store file", name);
168
+
Helpers::abort_application ();
169
+
}
170
+
171
+
if (header->version != ASSEMBLY_STORE_FORMAT_VERSION) {
172
+
log_fatal (LOG_ASSEMBLY, "Assembly store '%s' uses format version 0x%x, instead of the expected 0x%x", name, header->version, ASSEMBLY_STORE_FORMAT_VERSION);
auto header = static_cast<AssemblyStoreHeader*>(payload_start);
193
-
194
-
if (header->magic != ASSEMBLY_STORE_MAGIC) {
195
-
log_fatal (LOG_ASSEMBLY, "Assembly store '%s' is not a valid .NET for Android assembly store file", entry_name.get ());
196
-
Helpers::abort_application ();
197
-
}
198
-
199
-
if (header->version != ASSEMBLY_STORE_FORMAT_VERSION) {
200
-
log_fatal (LOG_ASSEMBLY, "Assembly store '%s' uses format version 0x%x, instead of the expected 0x%x", entry_name.get (), header->version, ASSEMBLY_STORE_FORMAT_VERSION);
0 commit comments