You've already forked linux-packaging-mono
Imported Upstream version 5.20.0.197
Former-commit-id: 5c07c43a31eac4feaa80af83fcfd029473b7f9c8
This commit is contained in:
parent
fad63d06c9
commit
335b1cf07f
@ -277,11 +277,24 @@ namespace System.Reflection.Emit {
|
||||
return System.Text.Encoding.UTF8.GetString(data, pos, len);
|
||||
}
|
||||
|
||||
internal static string decode_string (byte [] data, int pos, out int rpos)
|
||||
{
|
||||
if (data [pos] == 0xff) {
|
||||
rpos = pos + 1;
|
||||
return null;
|
||||
} else {
|
||||
int len = decode_len (data, pos, out pos);
|
||||
string s = string_from_bytes (data, pos, len);
|
||||
pos += len;
|
||||
rpos = pos;
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
||||
internal string string_arg ()
|
||||
{
|
||||
int pos = 2;
|
||||
int len = decode_len (data, pos, out pos);
|
||||
return string_from_bytes (data, pos, len);
|
||||
return decode_string (data, pos, out pos);
|
||||
}
|
||||
|
||||
internal static UnmanagedMarshal get_umarshal (CustomAttributeBuilder customBuilder, bool is_field) {
|
||||
@ -309,18 +322,14 @@ namespace System.Reflection.Emit {
|
||||
int paramType; // What is this ?
|
||||
|
||||
/* Skip field/property signature */
|
||||
pos ++;
|
||||
int fieldPropSig = (int)data [pos ++];
|
||||
/* Read type */
|
||||
paramType = ((int)data [pos++]);
|
||||
if (paramType == 0x55) {
|
||||
/* enums, the value is preceeded by the type */
|
||||
int len2 = decode_len (data, pos, out pos);
|
||||
string_from_bytes (data, pos, len2);
|
||||
pos += len2;
|
||||
decode_string (data, pos, out pos);
|
||||
}
|
||||
int len = decode_len (data, pos, out pos);
|
||||
string named_name = string_from_bytes (data, pos, len);
|
||||
pos += len;
|
||||
string named_name = decode_string (data, pos, out pos);
|
||||
|
||||
switch (named_name) {
|
||||
case "ArraySubType":
|
||||
@ -349,9 +358,7 @@ namespace System.Reflection.Emit {
|
||||
pos += 4;
|
||||
break;
|
||||
case "SafeArrayUserDefinedSubType":
|
||||
len = decode_len (data, pos, out pos);
|
||||
string_from_bytes (data, pos, len);
|
||||
pos += len;
|
||||
decode_string (data, pos, out pos);
|
||||
break;
|
||||
case "SizeParamIndex":
|
||||
value = (int)data [pos++];
|
||||
@ -360,20 +367,15 @@ namespace System.Reflection.Emit {
|
||||
hasSize = true;
|
||||
break;
|
||||
case "MarshalType":
|
||||
len = decode_len (data, pos, out pos);
|
||||
marshalTypeName = string_from_bytes (data, pos, len);
|
||||
pos += len;
|
||||
marshalTypeName = decode_string (data, pos, out pos);
|
||||
break;
|
||||
case "MarshalTypeRef":
|
||||
len = decode_len (data, pos, out pos);
|
||||
marshalTypeName = string_from_bytes (data, pos, len);
|
||||
marshalTypeRef = Type.GetType (marshalTypeName);
|
||||
pos += len;
|
||||
marshalTypeName = decode_string (data, pos, out pos);
|
||||
if (marshalTypeName != null)
|
||||
marshalTypeRef = Type.GetType (marshalTypeName);
|
||||
break;
|
||||
case "MarshalCookie":
|
||||
len = decode_len (data, pos, out pos);
|
||||
marshalCookie = string_from_bytes (data, pos, len);
|
||||
pos += len;
|
||||
marshalCookie = decode_string (data, pos, out pos);
|
||||
break;
|
||||
default:
|
||||
throw new Exception ("Unknown MarshalAsAttribute field: " + named_name);
|
||||
|
Reference in New Issue
Block a user