Skip to content

Commit 180ffe5

Browse files
committedNov 21, 2019
8232097: (sctp) SctpNet.init() results in java.lang.UnsatisfiedLinkError
Reviewed-by: alanb
1 parent 262d5f1 commit 180ffe5

File tree

2 files changed

+10
-13
lines changed

2 files changed

+10
-13
lines changed
 

‎src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpMultiChannelImpl.java

+1-12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -991,15 +991,4 @@ private static int send0(int fd,
991991
return SctpChannelImpl.send0(fd, address, length, addr, port, assocId,
992992
streamNumber, unordered, ppid);
993993
}
994-
995-
static {
996-
IOUtil.load(); /* loads nio & net native libraries */
997-
java.security.AccessController.doPrivileged(
998-
new java.security.PrivilegedAction<Void>() {
999-
public Void run() {
1000-
System.loadLibrary("sctp");
1001-
return null;
1002-
}
1003-
});
1004-
}
1005994
}

‎src/jdk.sctp/unix/classes/sun/nio/ch/sctp/SctpNet.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2009, 2013, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2009, 2019, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -335,6 +335,14 @@ static native void setInitMsgOption0(int fd, int arg1, int arg2)
335335
static native void init();
336336

337337
static {
338+
IOUtil.load(); // loads nio & net native libraries
339+
java.security.AccessController.doPrivileged(
340+
new java.security.PrivilegedAction<Void>() {
341+
public Void run() {
342+
System.loadLibrary("sctp");
343+
return null;
344+
}
345+
});
338346
init();
339347
}
340348
}

0 commit comments

Comments
 (0)
Please sign in to comment.