1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
2001-04-25 Ezra Peisach <epeisach@mit.edu>
* test.c: Always include stdlib.h
* Makefile.in: Add lclint support.
* dyn.h: Lclint annotate functions.
* dyn_create.c (DynCreate): Do not assume that malloc(0) is valid
and returns a valid pointer. Fix memory leak if malloc fails.
* dyn_realloc.c (_DynResize): Turn off warning of shifting a
signed variable.
* test.c: Check the return values of all library calls.
Thu Nov 9 15:31:31 2000 Ezra Peisach <epeisach@mit.edu>
* dyn_create.c (DynCopy): Arguments to memcpy were reversed. Found
while playing with lclint.
2000-11-09 Ezra Peisach <epeisach@mit.edu>
* Makefile.in (check-unix): Built and execture dyntest.
* test.c: Include string,h, stdlib.h.
* dyn_create.c, dyn_delete.c, dyn_insert.c, dyn_put.c,
dyn_realloc.c: Cast arguments to malloc(), realloc(), memmove() to
size_t.
* dynP.h: Provide full prototypes for _DynRealloc() and _DynResize().
* dyn.h: Add prototype for DynAppend.
2000-06-29 Ezra Peisach <epeisach@mit.edu>
* dyn_insert.c, dyn_put.c: Include string.h for memmove prototype.
2000-06-28 Ezra Peisach <epeisach@mit.edu>
* dyn_create.c, dyn_delete.c, dyn_insert.c, dyn_put.c: Use %p
format for displaying pointers.
2000-06-26 Ezra Peisach <epeisach@mit.edu>
* dyn_realloc.c: Remove unused variable.
1999-10-26 Wilfredo Sanchez <tritan@mit.edu>
* Makefile.in: Clean up usage of CFLAGS, CPPFLAGS, DEFS, DEFINES,
LOCAL_INCLUDES such that one can override CFLAGS from the command
line without losing CPP search patchs and defines. Some associated
Makefile cleanup.
1999-01-27 Theodore Ts'o <tytso@rsts-11.mit.edu>
* Makefile.in, configure.in: Move the responsibility for
generating the Makefile in this directory to the top-level
configure script. The local configure.in script has been
deleted.
Wed Feb 18 16:32:41 1998 Tom Yu <tlyu@mit.edu>
* Makefile.in: Remove trailing slash from thisconfigdir. Fix up
BUILDTOP for new conventions.
Wed Jan 28 17:50:30 1998 Theodore Ts'o <tytso@rsts-11.mit.edu>
* configure.in, Makefile.in: Remove CopySrcHeader from
configure.in, and move functionality to Makefile.in
* Makefile.in: Define BUILDTOP and thisconfigdir in the Makefile
Sat Dec 6 22:50:03 1997 Ezra Peisach <epeisach@mit.edu>
* dyn_delete.c: Include <string.h>
Tue Dec 31 13:02:06 1996 Ezra Peisach <epeisach@mit.edu>
* configure.in, Makefile.in: Update to new library build procedure.
Mon Jul 22 21:37:52 1996 Ezra Peisach <epeisach@mit.edu>
* dyn.h: If __STDC__ is not defined, generate prototypes implying
functions and not variables.
Mon Jul 22 04:20:48 1996 Marc Horowitz <marc@mit.edu>
* dyn_insert.c (DynInsert): what used to be #ifdef POSIX, should
be #ifdef HAVE_MEMMOVE
Tue Jul 9 19:30:40 1996 Marc Horowitz <marc@mit.edu>
* configure.in (DEPLIBS): AC_SUBST() it, to hack around an
incorrect assumption in aclocal.m4
* Makefile.in (DONE): add rules and macros to support shared
libraries
|