How do you submit an issue?

I found what looks like a bug, but don’t know how to submit it. Could someone lead me in the right direction.

example 1.

gl.glBegin( GL.GL_POINT );
gl.glVertex3fv( vertices[0] );
gl.glEnd();
int error = gl.glGetError(); // this is okey error = 0

example 2.

gl.glBegin( GL.GL_POINT );
int error = gl.glGetError();
gl.glVertex3fv( vertices[0] );
gl.glEnd();
error = gl.glGetError(); // this is not okey error = 1282

the only difference between the two examples is the extra call to gl.glGetError() after the glBegin. I’m using XP, Java 1.5.0_06, and the Jan 4th JSR-231 release of jogl.

OpenGL does not allow glGetError being called between glBegin and glEnd