[Bug 796243] New: Segmentation fault in "uniq" with long line input
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c0 Summary: Segmentation fault in "uniq" with long line input Classification: openSUSE Product: openSUSE 12.2 Version: Final Platform: x86-64 OS/Version: openSUSE 12.2 Status: NEW Severity: Major Priority: P5 - None Component: Basesystem AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: yuvalery@gmail.com QAContact: qa-bugs@suse.de Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20100101 Firefox/17.0 "uniq" crashes if input stream contains very large sequence of NULL bytes % perl -e 'print "1","\0"x50000000,"\r\n\r\n"' | uniq [2] 8244 done perl -e 'print "1","\0"x50000000,"\r\n\r\n"' | 8245 segmentation fault uniq Depending on the stack size the NULL-character sequence can be as short as ~10MB (in the above example 50MB) Reproducible: Always Steps to Reproduce: 1. perl -e 'print "1","\0"x50000000,"\r\n\r\n"' | uniq Actual Results: crash Expected Results: no crash The upstream version of coreutils does not have this problem (doesn't crash). The bug seems to be in the openSUSE specific multi-byte character patch (coreutils-i18n.patch). The crash happens in "different_multi" function due to call to "alloca" returning pointer beyond the stack. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Jiaying ren <jren@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jren@suse.com AssignedTo|bnc-team-screening@forge.pr |pth@suse.com |ovo.novell.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P5 - None |P4 - Low Status|NEW |ASSIGNED CC| |mail@bernhard-voelker.de -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Valery Valery <yuvalery@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |798538 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Valery Valery <yuvalery@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Blocks| |798541 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pth@suse.com AssignedTo|pth@suse.com |security-team@suse.de -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c1 Sebastian Krahmer <krahmer@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|Segmentation fault in |VUL-1: coreutils: |"uniq" with long line input |segmentation fault in | |"uniq" with long line input --- Comment #1 from Sebastian Krahmer <krahmer@suse.com> 2013-01-16 13:26:47 UTC --- Can reproduce it for 12.2 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c2 --- Comment #2 from Bernhard Voelker <mail@bernhard-voelker.de> 2013-01-16 13:27:36 UTC --- 'man alloca': If the allocation causes stack overflow, program behavior is undefined. Replacing the use of alloca() by xmalloc() + free() works. I'm working on a patch. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Sebastian Krahmer <krahmer@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Priority|P4 - Low |P3 - Medium CC| |krahmer@suse.com, | |security-team@suse.de AssignedTo|security-team@suse.de |pth@suse.com Severity|Major |Normal -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c3 --- Comment #3 from Philipp Thomas <pth@suse.com> 2013-01-16 15:44:52 CET --- I'm already working on a patch for all three bugs. For speed reasons my patch uses xmalloc for anything beyond 4k. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c4 --- Comment #4 from Bernhard Voelker <mail@bernhard-voelker.de> 2013-01-21 08:37:45 UTC --- Fixed in Base:System, submitted to Factory: https://build.opensuse.org/request/show/149348 Fixes for openSUSE:Maintenance pending. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Matthias Weckbecker <mweckbecker@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|VUL-1: coreutils: |VUL-1: CVE-2013-0222: |segmentation fault in |coreutils: segmentation |"uniq" with long line input |fault in "uniq" with long | |line input -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c5 --- Comment #5 from Matthias Weckbecker <mweckbecker@suse.com> 2013-01-23 12:58:21 CET --- CVE-2013-0222 was assigned to this. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c6 --- Comment #6 from Bernhard Voelker <mail@bernhard-voelker.de> 2013-01-23 12:33:25 UTC --- Maintenance requests created: 11.4: https://build.opensuse.org/request/show/149689 12.1: https://build.opensuse.org/request/show/149691 12.2: https://build.opensuse.org/request/show/149694 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| |obs:running:1251:moderate -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|obs:running:1251:moderate |obs:running:1252:moderate -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|obs:running:1252:moderate |obs:running:1252:moderate | |obs:running:1251:moderate -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c7 --- Comment #7 from Bernhard Wiedemann <bwiedemann@suse.com> 2013-01-26 20:00:08 CET --- This is an autogenerated message for OBS integration: This bug (796243) was mentioned in https://build.opensuse.org/request/show/150013 Maintenance / -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c8 --- Comment #8 from Bernhard Wiedemann <bwiedemann@suse.com> 2013-01-26 21:00:18 CET --- This is an autogenerated message for OBS integration: This bug (796243) was mentioned in https://build.opensuse.org/request/show/150015 Maintenance / -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c9 --- Comment #9 from Bernhard Wiedemann <bwiedemann@suse.com> 2013-01-26 22:00:10 CET --- This is an autogenerated message for OBS integration: This bug (796243) was mentioned in https://build.opensuse.org/request/show/150025 Maintenance / -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|obs:running:1252:moderate |obs:running:1251:moderate |obs:running:1251:moderate | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|obs:running:1251:moderate | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c10 --- Comment #10 from Swamp Workflow Management <swamp@suse.de> 2013-02-04 13:04:45 UTC --- openSUSE-SU-2013:0232-1: An update that fixes three vulnerabilities is now available. Category: security (moderate) Bug References: 796243,798538,798541 CVE References: CVE-2013-0221,CVE-2013-0222,CVE-2013-0223 Sources used: openSUSE 12.1 (src): coreutils-8.14-3.19.1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c11 --- Comment #11 from Swamp Workflow Management <swamp@suse.de> 2013-02-04 13:05:18 UTC --- openSUSE-SU-2013:0233-1: An update that fixes three vulnerabilities is now available. Category: security (moderate) Bug References: 796243,798538,798541 CVE References: CVE-2013-0221,CVE-2013-0222,CVE-2013-0223 Sources used: openSUSE 12.2 (src): coreutils-8.16-5.12.1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c12 --- Comment #12 from Swamp Workflow Management <swamp@suse.de> 2013-02-04 14:04:32 UTC --- openSUSE-SU-2013:0237-1: An update that fixes three vulnerabilities is now available. Category: security (moderate) Bug References: 796243,798538,798541 CVE References: CVE-2013-0221,CVE-2013-0222,CVE-2013-0223 Sources used: openSUSE 11.4 (src): coreutils-8.9-23.1 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| |maint:planned:update -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c13 Marcus Meissner <meissner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |meissner@suse.com --- Comment #13 from Marcus Meissner <meissner@suse.com> 2013-03-19 13:27:03 UTC --- Please submit with the current coreutils update for SLE11 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c14 Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #14 from Philipp Thomas <pth@suse.com> 2013-06-04 05:58:00 CEST --- Everything submitted -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c15 Marcus Meissner <meissner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | --- Comment #15 from Marcus Meissner <meissner@suse.com> 2013-06-04 05:51:55 UTC --- I do not see any submission. request ids? also reassign the bugs back to security-team when done. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c16 Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |ASSIGNED --- Comment #16 from Philipp Thomas <pth@suse.com> 2013-06-05 11:38:07 CEST --- I'm checking the submissions right now. Would it be OK to include later bugfixes that were pending acceptance? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO InfoProvider| |meissner@suse.com -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c17 Marcus Meissner <meissner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED InfoProvider|meissner@suse.com | --- Comment #17 from Marcus Meissner <meissner@suse.com> 2013-06-06 06:27:49 UTC --- yes please -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c19 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard|maint:planned:update | | |maint:running:54064:moderat | |e --- Comment #19 from Swamp Workflow Management <swamp@suse.de> 2013-08-14 06:21:00 UTC --- The SWAMPID for this issue is 54064. This issue was rated as moderate. Please submit fixed packages until 2013-08-28. When done, please reassign the bug to security-team@suse.de. Patchinfo will be handled by security team. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c20 Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #20 from Philipp Thomas <pth@suse.com> 2013-08-19 15:12:54 CEST --- Packages for SLE have been released -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c21 Philipp Thomas <pth@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|FIXED | AssignedTo|pth@suse.com |security-team@suse.de --- Comment #21 from Philipp Thomas <pth@suse.com> 2013-08-19 15:39:21 CEST --- Reopen to reassign. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c22 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| | |maint:running:54064:moderat |maint:running:54064:moderat |e |e | |maint:released:sle11-sp2:54 | |066 --- Comment #22 from Swamp Workflow Management <swamp@suse.de> 2013-09-25 14:49:51 UTC --- Update released for: coreutils, coreutils-debuginfo, coreutils-debuginfo-x86, coreutils-debugsource, coreutils-lang, coreutils-x86 Products: SLE-DEBUGINFO 11-SP2 (i386, ia64, ppc64, s390x, x86_64) SLE-DESKTOP 11-SP2 (i386, x86_64) SLE-SERVER 11-SP2 (i386, ia64, ppc64, s390x, x86_64) SLES4VMWARE 11-SP2 (i386, x86_64) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c23 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| | |maint:running:54064:moderat |maint:running:54064:moderat |e |e |maint:released:sle11-sp2:54 |maint:released:sle11-sp3:54 |066 |067 --- Comment #23 from Swamp Workflow Management <swamp@suse.de> 2013-09-25 14:55:34 UTC --- Update released for: coreutils, coreutils-debuginfo, coreutils-debuginfo-x86, coreutils-debugsource, coreutils-lang, coreutils-x86 Products: SLE-DEBUGINFO 11-SP3 (i386, ia64, ppc64, s390x, x86_64) SLE-DESKTOP 11-SP3 (i386, x86_64) SLE-SERVER 11-SP3 (i386, ia64, ppc64, s390x, x86_64) SLES4VMWARE 11-SP3 (i386, x86_64) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c24 Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| | |maint:running:54064:moderat |maint:running:54064:moderat |e |e |maint:released:sle11-sp3:54 |maint:released:sle11-sp3:54 |067 |067 | |maint:released:sle11-sp1:54 | |065 --- Comment #24 from Swamp Workflow Management <swamp@suse.de> 2013-09-26 09:04:49 UTC --- Update released for: coreutils, coreutils-debuginfo, coreutils-debugsource, coreutils-lang Products: SLE-SERVER 11-SP1-TERADATA (x86_64) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| | |maint:running:54064:moderat |maint:released:sle11-sp3:54 |e |067 |maint:released:sle11-sp3:54 |maint:released:sle11-sp1:54 |067 |065 |maint:released:sle11-sp1:54 | |065 | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c25 Marcus Meissner <meissner@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |FIXED --- Comment #25 from Marcus Meissner <meissner@suse.com> 2013-10-01 15:07:59 UTC --- rekleased -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=796243 https://bugzilla.novell.com/show_bug.cgi?id=796243#c Swamp Workflow Management <swamp@suse.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status Whiteboard| | |maint:released:sle11-sp3:54 |maint:released:sle11-sp3:54 |067 |067 |maint:released:sle11-sp1:54 |maint:released:sle11-sp1:54 |065 |065 maint:planned:update -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com