Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 67664 invoked from network); 7 Feb 2008 18:22:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 7 Feb 2008 18:22:44 -0000 Received: (qmail 91105 invoked by uid 500); 7 Feb 2008 18:22:36 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 91078 invoked by uid 500); 7 Feb 2008 18:22:36 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 91069 invoked by uid 99); 7 Feb 2008 18:22:36 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Feb 2008 10:22:36 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Feb 2008 18:22:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 165DF1A9832; Thu, 7 Feb 2008 10:22:21 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r619544 - /harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp Date: Thu, 07 Feb 2008 18:22:20 -0000 To: commits@harmony.apache.org From: gshimansky@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080207182221.165DF1A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: gshimansky Date: Thu Feb 7 10:22:15 2008 New Revision: 619544 URL: http://svn.apache.org/viewvc?rev=619544&view=rev Log: Fixed compilation warning Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp?rev=619544&r1=619543&r2=619544&view=diff ============================================================================== --- harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp (original) +++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/jni/jni.cpp Thu Feb 7 10:22:15 2008 @@ -1105,7 +1105,7 @@ ObjectHandle new_handle = oh_allocate_local_handle_from_jni(); if (new_handle == NULL) { tmn_suspend_enable(); //---------------------------------^ - return NULL; + return false; } ManagedObject *jlo = h->object; assert(jlo);