Skip to content

Commit c2c048d

Browse files
committed
2010-04-26 Zoltan Varga <[email protected]>
* boehm-gc.c: Applied patch from Robert Nagy ([email protected]). Include string.h for memmove. socket-io.c: Applied patch from Robert Nagy ([email protected]). ipaddress_to_struct_in6_addr() is only needed when defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ). svn path=/branches/mono-2-6/mono/; revision=156095
1 parent 49b1a94 commit c2c048d

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

mono/metadata/ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2010-04-26 Zoltan Varga <[email protected]>
2+
3+
* boehm-gc.c: Applied patch from Robert Nagy ([email protected]). Include
4+
string.h for memmove.
5+
6+
socket-io.c: Applied patch from Robert Nagy ([email protected]).
7+
ipaddress_to_struct_in6_addr() is only needed when
8+
defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
9+
110
2010-04-25 Zoltan Varga <[email protected]>
211

312
* class.c (mono_class_create_from_typedef): Initialize class->nested_in after

mono/metadata/boehm-gc.c

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
*/
77

88
#include "config.h"
9+
10+
#include <string.h>
11+
912
#define GC_I_HIDE_POINTERS
1013
#include <mono/metadata/gc-internal.h>
1114
#include <mono/metadata/mono-gc.h>

mono/metadata/socket-io.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,6 @@ static struct in_addr ipaddress_to_struct_in_addr(MonoObject *ipaddr)
19341934

19351935
return(inaddr);
19361936
}
1937-
#endif
19381937

19391938
#ifdef AF_INET6
19401939
static struct in6_addr ipaddress_to_struct_in6_addr(MonoObject *ipaddr)
@@ -1961,6 +1960,7 @@ static struct in6_addr ipaddress_to_struct_in6_addr(MonoObject *ipaddr)
19611960
return(in6addr);
19621961
}
19631962
#endif /* AF_INET6 */
1963+
#endif
19641964

19651965
void ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal(SOCKET sock, gint32 level, gint32 name, MonoObject *obj_val, MonoArray *byte_val, gint32 int_val, gint32 *error)
19661966
{

0 commit comments

Comments
 (0)