From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19664 invoked by alias); 17 Mar 2008 17:59:19 -0000 Received: (qmail 19548 invoked by uid 48); 17 Mar 2008 17:58:36 -0000 Date: Mon, 17 Mar 2008 17:59:00 -0000 Message-ID: <20080317175836.19547.qmail@sourceware.org> From: "rsa at us dot ibm dot com" To: glibc-bugs@sources.redhat.com In-Reply-To: <20080317163230.5950.boringuy@gmail.com> References: <20080317163230.5950.boringuy@gmail.com> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug libc/5950] strtold_l() segfaults on various distribution of linux X-Bugzilla-Reason: CC Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org X-SW-Source: 2008-03/txt/msg00100.txt.bz2 ------- Additional Comments From rsa at us dot ibm dot com 2008-03-17 17:58 ------- Drepper's locale .ps file is adequate for figuring out how to get the current locale for use in strtod_l. Here's a complete example: #include #include int main() { double d; char *locale = setlocale(LC_ALL,""); locale_t loc_new = newlocale (LC_ALL_MASK, locale, 0); d = strtod_l("1234.23423", NULL, loc_new); freelocale(loc_new); return 0; } gcc -Wall test.c -o test -D_GNU_SOURCE=1 Perhaps this documentation can make it's way into `info libc` in some form. -- http://sourceware.org/bugzilla/show_bug.cgi?id=5950 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.