hyperlight-guest-bin 0.13.0

This crate provides the opinionated bits of the guest library, such as the panic handler, the entry point, the guest logger, the exception handling logic, and third-party code used by our C-API needed to build a native hyperlight-guest binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/src/hyperlight_guest/third_party/printf/printf.c b/src/hyperlight_guest/third_party/printf/printf.c
index 8a700ad..caf375a 100644
--- a/src/hyperlight_guest/third_party/printf/printf.c
+++ b/src/hyperlight_guest/third_party/printf/printf.c
@@ -149,9 +149,7 @@ static inline void _out_null(char character, void* buffer, size_t idx, size_t ma
 static inline void _out_char(char character, void* buffer, size_t idx, size_t maxlen)
 {
   (void)buffer; (void)idx; (void)maxlen;
-  if (character) {
     _putchar(character);
-  }
 }