From 60024a469de8a4aa4a5ba23557d5a1eef3d92fa3 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Fri, 3 Aug 2001 08:51:53 +0000 Subject: [PATCH] Add some casts --- ext/session/session.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ext/session/session.c b/ext/session/session.c index ab491a96b3..6b32d94a86 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -287,13 +287,13 @@ PS_SERIALIZER_ENCODE_FUNC(php_binary) PS_ENCODE_LOOP( if (key_length > PS_BIN_MAX) continue; - smart_str_appendc(&buf, key_length); + smart_str_appendc(&buf, (unsigned char) key_length); smart_str_appendl(&buf, key, key_length); php_var_serialize(&buf, struc, &var_hash); } else { if (key_length > PS_BIN_MAX) continue; - smart_str_appendc(&buf, (key_length & PS_BIN_UNDEF)); + smart_str_appendc(&buf, (unsigned char) (key_length & PS_BIN_UNDEF)); smart_str_appendl(&buf, key, key_length); ); @@ -353,7 +353,7 @@ PS_SERIALIZER_ENCODE_FUNC(php) PS_ENCODE_LOOP( if (key_length + 1 > MAX_STR) continue; - smart_str_appendl(&buf, key, key_length); + smart_str_appendl(&buf, key, (unsigned char) key_length); smart_str_appendc(&buf, PS_DELIMITER); php_var_serialize(&buf, struc, &var_hash); -- 2.50.1