1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-12-04 14:46:47 -05:00

Drop unused local variable scriptlen and strlen call in execute_cgi

This commit is contained in:
Miciah Dashiel Butler Masters 2008-05-16 03:54:08 +00:00
parent a04952a5fa
commit e174b9b023

View File

@ -306,7 +306,6 @@ execute_cgi(struct connection *conn)
{
unsigned char *last_slash;
unsigned char *script;
int scriptlen;
struct stat buf;
pid_t pid;
enum connection_state state = S_OK;
@ -325,7 +324,6 @@ execute_cgi(struct connection *conn)
goto end2;
}
decode_uri(script);
scriptlen = strlen(script);
if (stat(script, &buf) || !(S_ISREG(buf.st_mode))
|| !(buf.st_mode & S_IXUSR)) {