X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=nntp%2Fnewsrc.c;h=8e57a10884c010d37d915581cc7b6d35a7c2a77b;hp=e58c9dc2807e13ee1d20bbf7b9ba64751fe914f3;hb=ea912b20ba2b3b9dfdbbae758ad56263c9aa41b3;hpb=dba814e28104a395ffb52e16beccaecf09be8cde diff --git a/nntp/newsrc.c b/nntp/newsrc.c index e58c9dc..8e57a10 100644 --- a/nntp/newsrc.c +++ b/nntp/newsrc.c @@ -32,6 +32,7 @@ #include #include #include +#include #include void nntp_add_to_list (NNTP_SERVER * s, NNTP_DATA * d) @@ -86,7 +87,7 @@ static int nntp_parse_newsrc_line (NNTP_SERVER * news, char *line) nntp_add_to_list (news, data); } else - mem_free ((void **) &data->entries); + mem_free (&data->entries); data->rc = 1; data->entries = mem_calloc (x * 2, sizeof (NEWSRC_ENTRY)); @@ -634,9 +635,9 @@ static int mutt_update_list_file (char *filename, char *section, FILE *ifp; FILE *ofp; char buf[HUGE_STRING]; - char tmpfile[_POSIX_PATH_MAX]; + char tmpfile[_POSIX_PATH_MAX], link[_POSIX_PATH_MAX]; char *c; - int ext = 0, done = 0, r = 0; + int ext = 0, done = 0, r = 0, l = 0; /* if file not exist, create it */ if ((ifp = safe_fopen (filename, "a"))) @@ -651,7 +652,14 @@ static int mutt_update_list_file (char *filename, char *section, mutt_error (_("Unable to lock %s"), filename); return -1; } - snprintf (tmpfile, sizeof(tmpfile), "%s.tmp", filename); + /* use mutt_adv_mktemp() to get a tempfile in the same + * directory as filename is so that we can follow symlinks + * via rename(2); as dirname(2) may modify its argument, + * temporarily use buf as copy of it + */ + strncpy (buf, filename, sizeof (buf)); + strncpy (tmpfile, basename (filename), sizeof (tmpfile)); + mutt_adv_mktemp ((const char*) dirname (buf), tmpfile, sizeof (tmpfile)); debug_print (1, ("Opening %s\n", tmpfile)); if (!(ofp = fopen (tmpfile, "w"))) { fclose (ifp); @@ -723,9 +731,13 @@ static int mutt_update_list_file (char *filename, char *section, mutt_error (_("Can't write %s"), tmpfile); return -1; } - if (rename (tmpfile, filename) < 0) { + link[0] = '\0'; + if ((l = readlink (filename, link, sizeof (link)-1)) > 0) + link[l] = '\0'; + debug_print (1, ("Renaming %s to %s\n",tmpfile, l > 0 ? link : filename)); + if (rename (tmpfile, l > 0 ? link : filename) < 0) { unlink (tmpfile); - mutt_error (_("Can't rename %s to %s"), tmpfile, filename); + mutt_error (_("Can't rename %s to %s"), tmpfile, l > 0 ? link : filename); return -1; } return 0; @@ -932,7 +944,7 @@ int nntp_save_cache_group (CONTEXT * ctx) fputs (buf, f); if (h->env->references) mutt_write_references (h->env->references, f); - snprintf (buf, sizeof (buf), "\t%ld\t%d\tXref: %s\n", + snprintf (buf, sizeof (buf), "\t" OFF_T_FMT "\t%d\tXref: %s\n", h->content->length, h->lines, NONULL (h->env->xref)); if (fputs (buf, f) == EOF) { fclose (f);