avr-libc-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[avr-libc-commit] [2128] Submitted by Stefan Ernst:


From: Joerg Wunsch
Subject: [avr-libc-commit] [2128] Submitted by Stefan Ernst:
Date: Mon, 07 Jun 2010 15:21:41 +0000

Revision: 2128
          http://svn.sv.gnu.org/viewvc/?view=rev&root=avr-libc&revision=2128
Author:   joerg_wunsch
Date:     2010-06-07 15:21:40 +0000 (Mon, 07 Jun 2010)
Log Message:
-----------
Submitted by Stefan Ernst:
bug #27243: malloc: small error in comment
* stdlib/malloc.c: Fix comment.

Ticket Links:
:-----------
    http://savannah.gnu.org/bugs/?27243

Modified Paths:
--------------
    trunk/avr-libc/ChangeLog
    trunk/avr-libc/NEWS
    trunk/avr-libc/libc/stdlib/malloc.c

Modified: trunk/avr-libc/ChangeLog
===================================================================
--- trunk/avr-libc/ChangeLog    2010-06-07 14:49:37 UTC (rev 2127)
+++ trunk/avr-libc/ChangeLog    2010-06-07 15:21:40 UTC (rev 2128)
@@ -1,8 +1,14 @@
 2010-06-07  Joerg Wunsch <address@hidden>
 
+       Submitted by Stefan Ernst:
+       bug #27243: malloc: small error in comment
+       * stdlib/malloc.c: Fix comment.
+
+2010-06-07  Joerg Wunsch <address@hidden>
+
        Submitted by Aleksandar Kanchev:
        bug #27242: realloc: serious error when size shrinks
-       * stdlib/reallo.c: Change freelist calculation.
+       * stdlib/realloc.c: Change freelist calculation.
        * tests/simulate/regression/bug-27242.c: New file.
 
 2010-06-07  Joerg Wunsch <address@hidden>

Modified: trunk/avr-libc/NEWS
===================================================================
--- trunk/avr-libc/NEWS 2010-06-07 14:49:37 UTC (rev 2127)
+++ trunk/avr-libc/NEWS 2010-06-07 15:21:40 UTC (rev 2128)
@@ -105,6 +105,7 @@
   [#27201] _WORDREGISTER in xmega headers does not work in C99 mode
   [#27235] malloc: Several things go wrong (part 1)
   [#27242] realloc: serious error when size shrinks
+  [#27243] malloc: small error in comment
   [#27367] RAMSTART missing in elder device header files
   [#27434] Arguments of macros must be protected in parentheses
   [#28575] Minor bug in iousb162.h - missing FUSE_ prefixes

Modified: trunk/avr-libc/libc/stdlib/malloc.c
===================================================================
--- trunk/avr-libc/libc/stdlib/malloc.c 2010-06-07 14:49:37 UTC (rev 2127)
+++ trunk/avr-libc/libc/stdlib/malloc.c 2010-06-07 15:21:40 UTC (rev 2128)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2002, 2004 Joerg Wunsch
+/* Copyright (c) 2002, 2004, 2010 Joerg Wunsch
    All rights reserved.
 
    Redistribution and use in source and binary forms, with or without
@@ -82,7 +82,7 @@
        /*
         * First, walk the free list and try finding a chunk that
         * would match exactly.  If we found one, we are done.  While
-        * walking, note down the size of the largest chunk we found
+        * walking, note down the size of the smallest chunk we found
         * that would still fit the request -- we need it for step 2.
         *
         */




reply via email to

[Prev in Thread] Current Thread [Next in Thread]