X-Git-Url: https://git.librecmc.org/?p=oweals%2Ftinc.git;a=blobdiff_plain;f=src%2Fconf.c;h=3f81877bf405e1d4ca35491df127a86f1e947b0a;hp=58d7b6d30e94b4975aa016ed697bf39340bcdfd7;hb=fbf9a88fdda1a1ccde68059001448ebeba7884f5;hpb=628bd04b5bcfa6f36b966ce285049ff0132b277e diff --git a/src/conf.c b/src/conf.c index 58d7b6d..3f81877 100644 --- a/src/conf.c +++ b/src/conf.c @@ -467,9 +467,14 @@ static void disable_old_keys(const char *filename) { return; } - snprintf(tmpfile, sizeof(tmpfile), "%s.tmp", filename); + int len = snprintf(tmpfile, sizeof(tmpfile), "%s.tmp", filename); - w = fopen(tmpfile, "w"); + if(len < 0 || len >= PATH_MAX) { + fprintf(stderr, "Pathname too long: %s.tmp\n", filename); + w = NULL; + } else { + w = fopen(tmpfile, "w"); + } while(fgets(buf, sizeof(buf), r)) { if(!strncmp(buf, "-----BEGIN RSA", 14)) {