Skip to content

Commit

Permalink
2009-08-20 Rodrigo Kumpera <rkumpera@novell.com>
Browse files Browse the repository at this point in the history
	* metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
	bit for assembly flags. MS is ok with it but there is no spec anywhere
	on its mean

svn path=/trunk/mono/; revision=140392
  • Loading branch information
kumpera committed Aug 21, 2009
1 parent 771e24b commit c7bb5af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions mono/metadata/ChangeLog
@@ -1,3 +1,9 @@
2009-08-20 Rodrigo Kumpera <rkumpera@novell.com>

* metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
bit for assembly flags. MS is ok with it but there is no spec anywhere
on its mean

2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>

* class.c (mono_class_create_from_typedef): Emit profiler events
Expand Down
2 changes: 1 addition & 1 deletion mono/metadata/metadata-verify.c
Expand Up @@ -2936,7 +2936,7 @@ verify_fieldrva_table (VerifyContext *ctx)
}
}

#define INVALID_ASSEMBLY_FLAGS_BITS ~((1 << 0) | (1 << 8) | (1 << 14) | (1 << 15))
#define INVALID_ASSEMBLY_FLAGS_BITS ~((1 << 0) | (1 << 4) | (1 << 8) | (1 << 14) | (1 << 15))
static void
verify_assembly_table (VerifyContext *ctx)
{
Expand Down

0 comments on commit c7bb5af

Please sign in to comment.