Skip to content

Commit c83a1b0

Browse files
committed
bump version to 0.9.2
1 parent 62c89b0 commit c83a1b0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "redis-module"
3-
version = "0.9.1"
3+
version = "0.9.2"
44
authors = ["Gavrie Philipson <[email protected]>", "Guy Korland <[email protected]>"]
55
edition = "2018"
66
build = "build.rs"

src/raw.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ pub fn string_append_buffer(
359359
buff: &str,
360360
) -> Status {
361361
unsafe {
362-
RedisModule_StringAppendBuffer.unwrap()(ctx, s, buff.as_ptr() as *mut c_char, buff.len()).into()
362+
RedisModule_StringAppendBuffer.unwrap()(ctx, s, buff.as_ptr() as *mut c_char, buff.len())
363+
.into()
363364
}
364365
}

0 commit comments

Comments
 (0)