diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 17:57:48 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-01-31 17:57:48 +0000 |
commit | 8aee6def9cdbf995d70d4bbdfd7c5170a3167144 (patch) | |
tree | 129ac6598e5dc72b75062249ce7b78725c85c388 /libbb | |
parent | c8f045abffa9e0d6c6e6308483b92cdee95868de (diff) | |
download | busybox-w32-8aee6def9cdbf995d70d4bbdfd7c5170a3167144.tar.gz busybox-w32-8aee6def9cdbf995d70d4bbdfd7c5170a3167144.tar.bz2 busybox-w32-8aee6def9cdbf995d70d4bbdfd7c5170a3167144.zip |
- bzero -> memset
text data bss dec hex filename
1652855 14444 1215616 2882915 2bfd63 busybox.oorig.gcc-3.3
1652823 14444 1215616 2882883 2bfd43 busybox.gcc-3.3
1603655 14412 1215552 2833619 2b3cd3 busybox.oorig.gcc-3.4
1603655 14412 1215552 2833619 2b3cd3 busybox.gcc-3.4
1609755 14508 1215744 2840007 2b55c7 busybox.oorig.gcc-4.0
1609755 14508 1215744 2840007 2b55c7 busybox.gcc-4.0
1590495 13516 1215392 2819403 2b054b busybox.oorig.gcc-4.1-HEAD
1590495 13516 1215392 2819403 2b054b busybox.gcc-4.1-HEAD
1589079 13036 1213248 2815363 2af583 busybox.oorig.gcc-4.2-HEAD
1589079 13036 1213248 2815363 2af583 busybox.gcc-4.2-HEAD
git-svn-id: svn://busybox.net/trunk/busybox@13762 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/dump.c | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index 7d923083a..09db24692 100644 --- a/libbb/dump.c +++ b/libbb/dump.c | |||
@@ -5,19 +5,7 @@ | |||
5 | * Copyright (c) 1989 | 5 | * Copyright (c) 1989 |
6 | * The Regents of the University of California. All rights reserved. | 6 | * The Regents of the University of California. All rights reserved. |
7 | * | 7 | * |
8 | * This program is free software; you can redistribute it and/or modify | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | * | 9 | * |
22 | * Original copyright notice is retained at the end of this file. | 10 | * Original copyright notice is retained at the end of this file. |
23 | */ | 11 | */ |
@@ -398,7 +386,7 @@ static u_char *get(void) | |||
398 | } | 386 | } |
399 | return ((u_char *) NULL); | 387 | return ((u_char *) NULL); |
400 | } | 388 | } |
401 | bzero((char *) curp + nread, need); | 389 | memset((char *) curp + nread, 0, need); |
402 | eaddress = address + nread; | 390 | eaddress = address + nread; |
403 | return (curp); | 391 | return (curp); |
404 | } | 392 | } |