diff options
Diffstat (limited to 'src/buffer.cpp')
-rw-r--r-- | src/buffer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buffer.cpp b/src/buffer.cpp index 7a05ce2..5b1c03d 100644 --- a/src/buffer.cpp +++ b/src/buffer.cpp @@ -86,10 +86,10 @@ Buffer::Buffer(std::string hex_data, bool allow_realloc) : length_(hex_data.size for(u_int32_t i=0; i<length_; ++i) { - u_int8_t tmp; + u_int32_t tmp; std::istringstream ss(std::string(hex_data.c_str(), i*2, 2)); if(!(ss >> std::hex >> tmp)) tmp = 0; - buf_[i] = tmp; + buf_[i] = static_cast<u_int8_t>(tmp); } } |