summaryrefslogtreecommitdiffstats
path: root/src/java/com/jogamp/common/nio
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-10-09 10:54:05 +0200
committerSven Gothel <[email protected]>2012-10-09 10:54:05 +0200
commit8b755e327112fc1184e6dcdd20294a678f6d8f40 (patch)
tree23452fc70a82d68d34dfa8c54d4ebc6d62ad4b65 /src/java/com/jogamp/common/nio
parent86e8c3a8d9f430700e07c485127130da68618e9d (diff)
Fix NPE in Buffers.slice2Float(), regression of commit 86e8c3a8d9f430700e07c485127130da68618e9d
Diffstat (limited to 'src/java/com/jogamp/common/nio')
-rwxr-xr-xsrc/java/com/jogamp/common/nio/Buffers.java15
1 files changed, 12 insertions, 3 deletions
diff --git a/src/java/com/jogamp/common/nio/Buffers.java b/src/java/com/jogamp/common/nio/Buffers.java
index aeb37e9..63f3188 100755
--- a/src/java/com/jogamp/common/nio/Buffers.java
+++ b/src/java/com/jogamp/common/nio/Buffers.java
@@ -279,8 +279,15 @@ public class Buffers {
* @return FloatBuffer w/ native byte order as given ByteBuffer
*/
public static final FloatBuffer slice2Float(Buffer buf, float[] backing, int floatPos, int floatSize) {
- final int pos = buf.position();
- final int limit = buf.limit();
+ final int pos;
+ final int limit;
+ if(null != buf) {
+ pos = buf.position();
+ limit = buf.limit();
+ } else {
+ pos = 0;
+ limit = 0;
+ }
final FloatBuffer res;
try {
if(buf instanceof ByteBuffer) {
@@ -299,7 +306,9 @@ public class Buffers {
throw new InternalError("Buffer not ByteBuffer, nor FloarBuffer, nor backing array given");
}
} finally {
- buf.position(pos).limit(limit);
+ if(null != buf) {
+ buf.position(pos).limit(limit);
+ }
}
res.mark();
return res;