Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 8569 invoked from network); 3 Sep 2009 19:19:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Sep 2009 19:19:40 -0000 Received: (qmail 57116 invoked by uid 500); 3 Sep 2009 19:19:40 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 57034 invoked by uid 500); 3 Sep 2009 19:19:39 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 57025 invoked by uid 99); 3 Sep 2009 19:19:39 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2009 19:19:39 +0000 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.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Sep 2009 19:19:38 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id F0FB92388896; Thu, 3 Sep 2009 19:19:17 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r811085 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c Date: Thu, 03 Sep 2009 19:19:17 -0000 To: commits@commons.apache.org From: mturk@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090903191917.F0FB92388896@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mturk Date: Thu Sep 3 19:19:17 2009 New Revision: 811085 URL: http://svn.apache.org/viewvc?rev=811085&view=rev Log: Delete the path test files Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c?rev=811085&r1=811084&r2=811085&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/os/win32/temps.c Thu Sep 3 19:19:17 2009 @@ -237,7 +237,7 @@ wcslcpy(tp, path, TMP_PATH_MAX); ACR_NO_END_SLASHW(tp); wcslcat(tp, L"\\.acrXXXXXX", TMP_PATH_MAX); - fh = getftemp(tp, FILE_ATTRIBUTE_NORMAL); + fh = getftemp(tp, FILE_FLAG_DELETE_ON_CLOSE); if (IS_VALID_HANDLE(fh)) { CloseHandle(fh); return 1;