river-options: fix setting null string options
This commit is contained in:
parent
7029a5cd3e
commit
1834bd4bd0
@ -89,7 +89,7 @@ pub fn set(self: *Self, value: Value) !void {
|
|||||||
};
|
};
|
||||||
} else if (self.value == .string and
|
} else if (self.value == .string and
|
||||||
// TODO: std.mem needs a good way to compare optional sentinel pointers
|
// TODO: std.mem needs a good way to compare optional sentinel pointers
|
||||||
((self.value.string == null and value.string == null) or
|
(((self.value.string == null) != (value.string == null)) or
|
||||||
(self.value.string != null and value.string != null and
|
(self.value.string != null and value.string != null and
|
||||||
std.cstr.cmp(self.value.string.?, value.string.?) != 0)))
|
std.cstr.cmp(self.value.string.?, value.string.?) != 0)))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user