I was doing a wrong thing with creating vecs

The old vector was getting dropped and thus free-ing the old
underlying slice. I want to use set_len() on Vec to do
this
This commit is contained in:
greg 2017-01-16 00:04:09 -08:00
parent 06a5de6e32
commit 518414ffd5
1 changed files with 6 additions and 6 deletions

View File

@ -195,9 +195,9 @@ pub fn GetParams(function: LLVMValueRef) -> Vec<LLVMValueRef> {
let size = CountParams(function);
unsafe {
let mut container = Vec::with_capacity(size);
let p = container.as_mut_ptr();
core::LLVMGetParams(function, p);
Vec::from_raw_parts(p, size, size)
container.set_len(size);
core::LLVMGetParams(function, container.as_mut_ptr());
container
}
}
@ -244,9 +244,9 @@ pub fn GetBasicBlocks(function: LLVMValueRef) -> Vec<LLVMBasicBlockRef> {
let size = CountBasicBlocks(function);
unsafe {
let mut container = Vec::with_capacity(size);
let p = container.as_mut_ptr();
core::LLVMGetBasicBlocks(function, p);
Vec::from_raw_parts(p, size, size)
container.set_len(size);
core::LLVMGetBasicBlocks(function, container.as_mut_ptr());
container
}
}