1
0
Pārlūkot izejas kodu

Remove NULL-symbol at the end of script

Serj Kalichev 9 gadi atpakaļ
vecāks
revīzija
7dd3b735ed
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  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);
 	}