Don't stat() on iPhone/iPod.
authorGuus Sliepen <guus@tinc-vpn.org>
Thu, 10 Sep 2009 17:51:08 +0000 (19:51 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Thu, 10 Sep 2009 17:51:08 +0000 (19:51 +0200)
Grzegorz Dymarek noted that tinc segfaults at the stat() call in
execute_script() on the iPhone.  We can omit the stat() call for the moment,
the subsequent call to system() will fail with just a warning.

src/process.c

index d07ce7db1acd608c2e75400e6f6126407c09ac54..f03f12a43f08865daa54a3a145f111aa51b5d339 100644 (file)
@@ -380,12 +380,14 @@ bool execute_script(const char *name, char **envp)
 
        scriptname[len - 1] = '\0';
 
+#ifndef HAVE_TUNEMU
        /* First check if there is a script */
 
        if(stat(scriptname + 1, &s)) {
                free(scriptname);
                return true;
        }
+#endif
 
        ifdebug(STATUS) logger(LOG_INFO, _("Executing script %s"), name);