X-Authentication-Warning: niemeyer.net: Host 200.230.186.185-as.acessonet.com.br [200.230.186.185] claimed to be computer From: "Gustavo Niemeyer" To: Subject: Dinamic allocation Date: Fri, 18 Jun 1999 20:05:00 -0300 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Reply-To: djgpp AT delorie DOT com Hi there! I think I'm doing some thing wrong here. When I try to hard code an array like this: char spans[MAXHEIGHT][MAXWIDTH]; So the program runs ok. But when I try to use dinamic memory allocation like this: char **spans; spans = (char **) malloc(MAXWIDTH*MAXHEIGHT*sizeof(char)); When I run the program it prints a General protection fault error, pointing to a loop that accesses the array. Probably is something I'm missing... isn't it? Thank you Gustavo Niemeyer