From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24930 invoked by alias); 25 Apr 2006 11:54:38 -0000 Received: (qmail 24876 invoked by uid 48); 25 Apr 2006 11:54:29 -0000 Date: Tue, 25 Apr 2006 11:54:00 -0000 Message-ID: <20060425115429.24875.qmail@sourceware.org> From: "thkala at softlab dot ece dot ntua dot gr" To: glibc-bugs@sources.redhat.com In-Reply-To: <20060413132726.2569.maestromae@kateos.org> References: <20060413132726.2569.maestromae@kateos.org> Reply-To: sourceware-bugzilla@sourceware.org Subject: [Bug libc/2569] utf-16 iconv module breaks programs X-Bugzilla-Reason: CC Mailing-List: contact glibc-bugs-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Post: List-Help: , Sender: glibc-bugs-owner@sourceware.org X-SW-Source: 2006-04/txt/msg00272.txt.bz2 List-Id: ------- Additional Comments From thkala at softlab dot ece dot ntua dot gr 2006-04-25 11:54 ------- Ah, I managed to reproduce this with something much simpler than samba :-) : #include int main() { iconv_t cd0, cd1; cd0 = iconv_open("ISO-8859-7", "UTF-16LE"); cd1 = iconv_open("ISO-8859-7", "UTF-16LE"); iconv_close(cd0); iconv_close(cd1); return 0; } It seems that opening two identical conversion descriptors is what triggers the error. Is there any reason why two identical descriptors should not be allowed ? Therefore I think that this is a glibc bug, after all. Perhaps reopening it is in order ? Regards, Theodoros Kalamatianos -- http://sourceware.org/bugzilla/show_bug.cgi?id=2569 ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.