зеркало из https://github.com/github/ruby.git
Fix double free when `getcwd` does not allocate buffer
Do not free the result at normal return from `ruby_getcwd`.
This commit is contained in:
Родитель
05502c1dda
Коммит
03a0ade90d
2
util.c
2
util.c
|
@ -564,7 +564,7 @@ ruby_getcwd(void)
|
|||
rb_imemo_tmpbuf_set_ptr(guard, buf);
|
||||
buf = xrealloc(buf, size);
|
||||
}
|
||||
rb_free_tmp_buffer(&guard);
|
||||
rb_imemo_tmpbuf_set_ptr(guard, NULL);
|
||||
return buf;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче