Your message dated Tue, 15 Apr 2008 00:42:00 -0400
with message-id <[EMAIL PROTECTED]>
and subject line gccchecker has been removed from Debian, closing #131453
has caused the Debian Bug report #131453,
regarding gccchecker: checker fails to catch off-by-one-error
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
131453: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=131453
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: gccchecker
Version: 0.9.9.1.20011205-2
Severity: normal

$ cat cnt.c
#include <stdio.h>
#include <limits.h>
#include <ctype.h>
#include <string.h>
#include <assert.h>

int main()
{
    unsigned char *c="abcdefghijklmnopqrstuvwxyz";
    int ind[UCHAR_MAX];
    int ch;
    int sum;

    memset(ind, 0, sizeof(ind));
    while((ch = getchar()) != EOF) {
        ind[ch] ++;
    }
    for (; *c; c++) {
        assert(*c != toupper(*c));
        sum = ind[*c] + ind[toupper(*c)];
        printf("Buchstabe %d: %d\n",*c,sum);

    }
    return 0;
}
$ checkergcc cnt.c
$ ./a.out < a.out
Checker 0.9.9.1 (i686-pc-linux-gnu) Copyright (C) 1998 Tristan Gingold.
This program has been compiled with `checkergcc' or `checkerg++'.
Checker is a memory access detector.
Checker is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.
For more information, set CHECKEROPTS to `--help'
>From Checker (pid:01358): `./a.out' is running (Tue Jan 29 20:47:21 2002)

Buchstabe 101: 5374
a.out: cnt.c:19: main: Assertion `*c != toupper(*c)' failed.
Segmentation fault

The program above runs OK if the correct size for the array
ind (which should be UCHAR_MAX+1) is used.

-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux meiner 2.2.20 #2 Sun Nov 4 23:47:51 CET 2001 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages gccchecker depends on:
ii  gcc                           2:2.95.4-9 The GNU C compiler.
ii  libc6                         2.2.4-7    GNU C Library: Shared libraries an



--- End Message ---
--- Begin Message ---
Version: 0.9.9.1.20011205-15.1+rm

The gccchecker package has been removed from Debian testing, unstable and
experimental, so I am now closing the bugs that were still opened
against it.

For more information about this package's removal, read
http://bugs.debian.org/337558 . That bug might give the reasons why
this package was removed, and suggestions of possible replacements.

Don't hesitate to reply to this mail if you have any question.

Thank you for your contribution to Debian.
Barry deFreese


--- End Message ---

Reply via email to