Package: libgee1 Version: 0.3.0-1 Severity: important If I use HashMap.get() in the Vala program, it returns null. The attached Vala code can be used to reproduce the bug.
-- System Information: Debian Release: lenny/sid APT prefers unstable APT policy: (990, 'unstable'), (350, 'experimental') Architecture: amd64 (x86_64) Kernel: Linux 2.6.30-1-amd64 (SMP w/2 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages libgee1 depends on: ii libc6 2.9-25 GNU C Library: Shared libraries ii libglib2.0-0 2.20.4-1 The GLib library of C routines libgee1 recommends no packages. libgee1 suggests no packages. -- no debconf information -- Julian Andres Klode - Debian Developer, Ubuntu Member See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/.
/* * Copyright (C) 2009 Julian Andres Klode <[email protected]> * * Copying and distribution of this file, with or without modification, * are permitted in any medium without royalty provided the copyright * notice and this notice are preserved. * * Description: * Map.get() always returns null. */ public void main() { Gee.HashMap<string,string> map = new Gee.HashMap<string,string>(); string key = "Key"; map[key] = "Value"; // map[key] is null. stdout.printf("%s: %s\n", key, map[key]); }
pgpgca7J2HRT3.pgp
Description: PGP signature

