PR libgcj/20727
* java/nio/DirectByteBufferImpl.java: Fix buffer ownership bug.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@97479
138bc75d-0d04-0410-961f-
82ee72b054a4
+2005-04-02 Anthony Green <green@redhat.com>
+
+ PR libgcj/20727
+ * java/nio/DirectByteBufferImpl.java: Fix buffer ownership bug.
+
2005-04-02 Mark Wielaard <mark@klomp.org>
* javax/naming/directory/BasicAttributes.java (equals): Compare to any
DirectByteBufferImpl(RawData address, int capacity)
{
super(capacity, capacity, 0, -1);
- this.owner = this;
+ this.owner = null;
this.address = address;
}