Remove a runaway explicit drop

This commit is contained in:
Jakub Konka
2020-06-11 23:48:38 +02:00
parent f1e773dc85
commit 60d55a3483

View File

@@ -223,7 +223,6 @@ impl<'a> WasiSnapshotPreview1 for WasiCtx {
.preadv(&mut buf, offset)? .preadv(&mut buf, offset)?
.try_into()? .try_into()?
}; };
drop(guest_slices);
Ok(host_nread) Ok(host_nread)
} }