diff options
| author | Warner Losh <imp@FreeBSD.org> | 1997-05-22 21:40:08 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 1997-05-22 21:40:08 +0000 |
| commit | 628c89d341a535d5dedd0496dd3b644cc9155991 (patch) | |
| tree | 7be8513a96e245cf42ba410aa081510994c48a92 | |
| parent | 53f741779c00e9bea9def4e8e718a603cb078384 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/perl/perl/stab.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gnu/usr.bin/perl/perl/stab.c b/gnu/usr.bin/perl/perl/stab.c index e34aa94028b7..6edb599b0b17 100644 --- a/gnu/usr.bin/perl/perl/stab.c +++ b/gnu/usr.bin/perl/perl/stab.c @@ -1,4 +1,4 @@ -/* $RCSfile: stab.c,v $$Revision: 1.1.1.1 $$Date: 1994/09/10 06:27:33 $ +/* $RCSfile: stab.c,v $$Revision: 1.2 $$Date: 1995/05/30 05:03:19 $ * * Copyright (c) 1991, Larry Wall * @@ -6,6 +6,9 @@ * License or the Artistic License, as specified in the README file. * * $Log: stab.c,v $ + * Revision 1.2 1995/05/30 05:03:19 rgrimes + * Remove trailing whitespace. + * * Revision 1.1.1.1 1994/09/10 06:27:33 gclarkii * Initial import of Perl 4.046 bmaked * @@ -817,7 +820,7 @@ char *name; char tmpbuf[1200]; STAB *stab; - sprintf(tmpbuf,"'_<%s", name); + snprintf(tmpbuf,sizeof(tmpbuf), "'_<%s", name); stab = stabent(tmpbuf, TRUE); str_set(stab_val(stab), name); if (perldb) |
