Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Date: Thu, 24 Jan 2002 16:17:16 +0300 From: egor duda X-Mailer: The Bat! (v1.53 RC/4) Reply-To: egor duda Organization: deo X-Priority: 3 (Normal) Message-ID: <149181594168.20020124161716@logos-m.ru> To: "Amos" CC: cygwin AT cygwin DOT com Subject: Re: STATUS+AF8-ACCESS+AF8-VIOLATION Exception In-Reply-To: <009a01c1a4d7$217b30d0$16c008d5@amosjx3m6o4w1v> References: <009a01c1a4d7$217b30d0$16c008d5 AT amosjx3m6o4w1v> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi! Thursday, 24 January, 2002 Amos tirtsab AT inter DOT net DOT il wrote: A> Any simple c program that uses a string function crashes with the A> STATUS_ACCESS_VIOLATION exception. A> #include A> main() A> { char *abc = "a b c"; A> strcpy(abc, "hello"); A> printf("%s\n", abc); A> } your program is incorrect. "a b c" string is a constant and can't be overwritten. complier places it in read-only segment, hence the exception in strcpy. Please refer to any C language manual for rules of proper string manipulation. Egor. mailto:deo AT logos-m DOT ru ICQ 5165414 FidoNet 2:5020/496.19 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/