Browse code

fixed coverity ID 12110 12111 changed a the type of a value from unsigned to signed due to possible negative values

Kevin Lin authored on 2015/03/17 02:08:03
Showing 1 changed files
... ...
@@ -129,7 +129,8 @@ inline size_t msxml_read_cb_new_window(struct msxml_cbdata *cbdata)
129 129
 int msxml_read_cb(void *ctx, char *buffer, int len)
130 130
 {
131 131
     struct msxml_cbdata *cbdata = (struct msxml_cbdata *)ctx;
132
-    size_t wbytes, rbytes, winret;
132
+    size_t wbytes, rbytes;
133
+    int winret;
133 134
 
134 135
     cli_msxmlmsg("msxml_read_cb called\n");
135 136