Return-Path: X-Original-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-dev-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 00CA0E0A4 for ; Wed, 28 Nov 2012 01:53:01 +0000 (UTC) Received: (qmail 83306 invoked by uid 500); 28 Nov 2012 01:53:00 -0000 Delivered-To: apmail-incubator-flex-dev-archive@incubator.apache.org Received: (qmail 83247 invoked by uid 500); 28 Nov 2012 01:52:59 -0000 Mailing-List: contact flex-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-dev@incubator.apache.org Received: (qmail 83106 invoked by uid 99); 28 Nov 2012 01:52:59 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Nov 2012 01:52:59 +0000 Date: Wed, 28 Nov 2012 01:52:59 +0000 (UTC) From: "Ben Crowl (JIRA)" To: flex-dev@incubator.apache.org Message-ID: <1979380688.30826.1354067579819.JavaMail.jiratomcat@arcas> In-Reply-To: <656455877.30770.1354066618850.JavaMail.jiratomcat@arcas> Subject: [jira] [Updated] (FLEX-33280) [iOS] Packager compiles boolean condition incorrectly after loop break MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/FLEX-33280?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ben Crowl updated FLEX-33280: ----------------------------- Environment: Windows 7 Ultimate Adobe Flex SDK 4.6 (build 23201, includes Adobe AIR 3.4 SDK) Flash Builder 4.5.1.313231 iPad 3 (running iOS6.0) / iPad 2 (running iOS6.0) was: Windows 7 Ultimate Adobe Flex SDK 4.6 (build 23201, includes Adobe AIR 3.4 SDK) Flash Builder 4.5.1.313231 > [iOS] Packager compiles boolean condition incorrectly after loop break > ---------------------------------------------------------------------- > > Key: FLEX-33280 > URL: https://issues.apache.org/jira/browse/FLEX-33280 > Project: Apache Flex > Issue Type: Bug > Components: .Unspecified - Compiler, Installation & Packaging > Affects Versions: Adobe Flex SDK 4.6 (Release) > Environment: Windows 7 Ultimate > Adobe Flex SDK 4.6 (build 23201, includes Adobe AIR 3.4 SDK) > Flash Builder 4.5.1.313231 > iPad 3 (running iOS6.0) / iPad 2 (running iOS6.0) > Reporter: Ben Crowl > Labels: ios, packaging > Attachments: BasicMobile.zip > > > An ActionScript function executes unexpectedly when compiled using Ad-Hoc release mode, using the Flex Packager for iOS. > The sample program contains a for each loop within another for each loop, that is used to compare two lists of integers. At the start of the outer loop, a variable named "matched" is set to false. > When a match is found in the inner loop, matched is assigned the value true, and the inner loop issues a break command to early-exit the loop. > Following the inner loop, an if statement checks the value of the boolean variable, like so: > if (matched == false) > { > ... > } > When the code is execute as an adhoc iOS release build on an iPad 3, the code within the if statement is executed even when matched == true. > Changing the code to the following, works as expected: > if (!matched) > { > ... > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira