mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
dtcm/reminders.c: NULL is not 0
This commit is contained in:
parent
9b699d3fb1
commit
0a74d63db4
1 changed files with 2 additions and 2 deletions
|
@ -97,7 +97,7 @@ r_validate_advance(char *advance_string) {
|
|||
((*(end_ptr - 1) == ' ') || (*(end_ptr - 1) == '\t')))
|
||||
end_ptr--;
|
||||
|
||||
*end_ptr = NULL;
|
||||
*end_ptr = 0;
|
||||
|
||||
|
||||
if (blank_buf(c_p)) {
|
||||
|
@ -823,7 +823,7 @@ reminders_attrs_to_form(Reminders *r, Dtcm_appointment *appt) {
|
|||
if (appt->mail && appt->mail->value) {
|
||||
r->mail_val.selected = True;
|
||||
_csa_iso8601_to_duration(appt->mail->value->item.reminder_value->lead_time, &r->mail_val.scope_val);
|
||||
memset(r->mailto_val, NULL, MAILTO_LEN);
|
||||
memset(r->mailto_val, 0, MAILTO_LEN);
|
||||
strncpy(r->mailto_val, (char *) appt->mail->value->item.reminder_value->reminder_data.data, appt->mail->value->item.reminder_value->reminder_data.size);
|
||||
} else {
|
||||
r->mail_val.selected = False;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue