diff options
author | Frederic Culot <calcurse@culot.org> | 2006-12-15 15:25:09 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-12-15 15:25:09 +0000 |
commit | 9d7650295c8e2da73768f7a5580fa041a833f416 (patch) | |
tree | 2d3da9daa6de7b9b42025794bb05ae8d6dbdb707 /src/apoint.c | |
parent | 2e1995320d959c22509f1d5201bb3363f1e966b8 (diff) | |
download | calcurse-9d7650295c8e2da73768f7a5580fa041a833f416.tar.gz calcurse-9d7650295c8e2da73768f7a5580fa041a833f416.zip |
strcpy replaced by strncpy
Diffstat (limited to 'src/apoint.c')
-rwxr-xr-x | src/apoint.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/apoint.c b/src/apoint.c index d0361e5..6a7a859 100755 --- a/src/apoint.c +++ b/src/apoint.c @@ -1,4 +1,4 @@ -/* $calcurse: apoint.c,v 1.6 2006/10/28 13:09:59 culot Exp $ */ +/* $calcurse: apoint.c,v 1.7 2006/12/15 15:25:09 culot Exp $ */ /* * Calcurse - text-based organizer @@ -57,7 +57,7 @@ apoint_llist_node_t *apoint_new(char *mesg, long start, long dur) o = (apoint_llist_node_t *) malloc(sizeof(apoint_llist_node_t)); o->mesg = (char *) malloc(strlen(mesg) + 1); - strcpy(o->mesg, mesg); + strncpy(o->mesg, mesg, strlen(mesg) + 1); o->start = start; o->dur = dur; @@ -91,7 +91,7 @@ void apoint_sec2str(apoint_llist_node_t *o, time_t t; if (o->start < day && type == APPT) { - strcpy(start, "..:.."); + strncpy(start, "..:..", 6); } else { t = o->start; lt = localtime(&t); @@ -99,7 +99,7 @@ void apoint_sec2str(apoint_llist_node_t *o, lt->tm_min); } if (o->start + o->dur > day + 24 * 3600 && type == APPT) { - strcpy(end, "..:.."); + strncpy(end, "..:..", 6); } else { t = o->start + o->dur; lt = localtime(&t); |