1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

append_str don't look the length of string

* mjit.c (compile_c_to_so): use append_str2() and pass the length of
	  so_name.  append_str() uses the size of the 2nd argument, not the
	  length of it.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62337 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2018-02-09 15:28:09 +00:00
parent 660e1dca5d
commit 72ebd85559

6
mjit.c
View file

@ -686,13 +686,15 @@ compile_c_to_so(const char *c_file, const char *so_file)
char **args; char **args;
#ifdef _MSC_VER #ifdef _MSC_VER
char *p; char *p;
int solen;
#endif #endif
input[0] = c_file; input[0] = c_file;
#ifdef _MSC_VER #ifdef _MSC_VER
p = (char *)output[0] = xmalloc(3 + strlen(so_file) + 1); solen = strlen(so_file);
p = (char *)output[0] = xmalloc(3 + solen + 1);
p = append_str(p, "-Fe"); p = append_str(p, "-Fe");
p = append_str(p, so_file); p = append_str2(p, so_file, solen);
*p = '\0'; *p = '\0';
args = form_args(4, (mjit_opts.debug ? VC_COMMON_ARGS_DEBUG : VC_COMMON_ARGS), args = form_args(4, (mjit_opts.debug ? VC_COMMON_ARGS_DEBUG : VC_COMMON_ARGS),
output, input, libs); output, input, libs);