From: Nicholas Nethercote Date: Fri, 11 Mar 2005 04:38:00 +0000 (+0000) Subject: Remove now-unnecessary FAQ. (Was removed from the text FAQ.txt a while X-Git-Tag: svn/VALGRIND_3_0_0~1045 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eed8fe1fb24aed25718fd5d9a6493603c0749511;p=thirdparty%2Fvalgrind.git Remove now-unnecessary FAQ. (Was removed from the text FAQ.txt a while ago.) git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3273 --- diff --git a/docs/xml/FAQ.xml b/docs/xml/FAQ.xml index 1a3ad3d305..c4e20605ee 100644 --- a/docs/xml/FAQ.xml +++ b/docs/xml/FAQ.xml @@ -433,27 +433,6 @@ int main(void) - - - My program dies with a segmentation fault, but Memcheck - doesn't give any error messages before it, or none that look - related. - - - One possibility is that your program accesses to memory - with inappropriate permissions set, such as writing to - read-only memory. Maybe your program is writing to a static - string like this: - -char* s = "hello"; -s[0] = 'j'; - - - or something similar. Writing to read-only memory can - also apparently make LinuxThreads behave strangely. - - -