aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2005-05-28 23:55:26 +0000
committerRob Landley <rob@landley.net>2005-05-28 23:55:26 +0000
commitf7662da2af1b6a9982ca0b2c8186dd1893d8c292 (patch)
treea6868ca1960702b7dfbe1e9a7db9d0b597a0f6d7
parent47bc802e9e8942182cd3cec1b5a6c3fb62427d16 (diff)
downloadbusybox-w32-f7662da2af1b6a9982ca0b2c8186dd1893d8c292.tar.gz
busybox-w32-f7662da2af1b6a9982ca0b2c8186dd1893d8c292.tar.bz2
busybox-w32-f7662da2af1b6a9982ca0b2c8186dd1893d8c292.zip
Shaun Jackman submitted a patch converting an allocation to use
CONFIG_RESERVE_BUFFER. (Rob Landley removed an #ifdef, per discussion on the list.)
-rw-r--r--coreutils/date.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index 513aadeec..70484e2cd 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -136,7 +136,6 @@ int date_main(int argc, char **argv)
136{ 136{
137 char *date_str = NULL; 137 char *date_str = NULL;
138 char *date_fmt = NULL; 138 char *date_fmt = NULL;
139 char *t_buff;
140 int set_time; 139 int set_time;
141 int utc; 140 int utc;
142 int use_arg = 0; 141 int use_arg = 0;
@@ -283,10 +282,13 @@ int date_main(int argc, char **argv)
283 date_fmt = "%Y.%m.%d-%H:%M:%S"; 282 date_fmt = "%Y.%m.%d-%H:%M:%S";
284 } 283 }
285 284
286 /* Print OUTPUT (after ALL that!) */ 285 {
287 t_buff = xmalloc(201); 286 /* Print OUTPUT (after ALL that!) */
288 strftime(t_buff, 200, date_fmt, &tm_time); 287 RESERVE_CONFIG_BUFFER(t_buff, 201);
289 puts(t_buff); 288 strftime(t_buff, 200, date_fmt, &tm_time);
289 puts(t_buff);
290 RELEASE_CONFIG_BUFFER(t_buff);
291 }
290 292
291 return EXIT_SUCCESS; 293 return EXIT_SUCCESS;
292} 294}