Browse Source

Remove NULL-symbol at the end of script

Serj Kalichev 9 years ago
parent
commit
7dd3b735ed
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/clish/sym_script.c

+ 1 - 1
plugins/clish/sym_script.c

@@ -75,7 +75,7 @@ CLISH_PLUGIN_SYM(clish_script)
 		wpipe = fopen(fifo_name, "w");
 		if (!wpipe)
 			_exit(-1);
-		fwrite(script, strlen(script) + 1, 1, wpipe);
+		fwrite(script, strlen(script), 1, wpipe);
 		fclose(wpipe);
 		_exit(0);
 	}