OpenJDK / jdk-updates / jdk12u
changeset 23650:d15f60141411
8036788: [parfait] JNI exception pending in jdk/src/windows/native/sun/windows/awt_Event.cpp
Reviewed-by: serb, pchelko
author | bagiras |
---|---|
date | Fri, 14 Mar 2014 14:23:33 +0400 |
parents | f4f882f0056b |
children | e41298d0da2f |
files | jdk/src/windows/native/sun/windows/awt_Event.cpp |
diffstat | 1 files changed, 8 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/windows/native/sun/windows/awt_Event.cpp Thu Mar 13 16:29:26 2014 -0700 +++ b/jdk/src/windows/native/sun/windows/awt_Event.cpp Fri Mar 14 14:23:33 2014 +0400 @@ -1,5 +1,5 @@ /* - * Copyright (c) 1998, 1999, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -45,12 +45,16 @@ TRY; AwtEvent::targetID = env->GetFieldID(cls, "target", "Ljava/lang/Object;"); - AwtEvent::xID = env->GetFieldID(cls, "x", "I"); - AwtEvent::yID = env->GetFieldID(cls, "y", "I"); + DASSERT(AwtEvent::targetID != NULL); + CHECK_NULL(AwtEvent::targetID); - DASSERT(AwtEvent::targetID != NULL); + AwtEvent::xID = env->GetFieldID(cls, "x", "I"); DASSERT(AwtEvent::xID != NULL); + CHECK_NULL(AwtEvent::xID); + + AwtEvent::yID = env->GetFieldID(cls, "y", "I"); DASSERT(AwtEvent::yID != NULL); + CHECK_NULL(AwtEvent::yID); CATCH_BAD_ALLOC; }