]> source.dussan.org Git - rspamd.git/commitdiff
Remove realpath call
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Feb 2016 23:54:37 +0000 (23:54 +0000)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Tue, 2 Feb 2016 23:54:37 +0000 (23:54 +0000)
src/libutil/util.c

index 6893172c92339b1ee90002b5d5cfde337886dc4b..06188f34e0620e8a1633adc625e44f8710ecdf46 100644 (file)
@@ -2102,13 +2102,6 @@ rspamd_file_xopen (const char *fname, int oflags, guint mode)
 {
        struct stat sb;
        int fd;
-       char *rp, rp_buf[PATH_MAX];
-
-       rp = realpath (fname, rp_buf);
-
-       if (rp == NULL) {
-               return -1;
-       }
 
 #ifdef HAVE_ONOFOLLOW
        fd = open (fname, oflags | O_NOFOLLOW, mode);