diff options
author | Marek Olšák <[email protected]> | 2011-05-01 14:01:59 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-05-01 14:07:31 +0200 |
commit | 425cfa139b36b4ac01db248de3dc8ad4799cec5c (patch) | |
tree | 7a9001f571ea1a7b6e4a7e036a7fb23a67f0f01f /src/gallium/auxiliary/rbug/rbug_context.c | |
parent | 847d397b3415b6705a084013903e1a7e8384e1d2 (diff) |
rbug: remove set-but-unused variables
Diffstat (limited to 'src/gallium/auxiliary/rbug/rbug_context.c')
-rw-r--r-- | src/gallium/auxiliary/rbug/rbug_context.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/gallium/auxiliary/rbug/rbug_context.c b/src/gallium/auxiliary/rbug/rbug_context.c index 36824058c7d..1188dd966e4 100644 --- a/src/gallium/auxiliary/rbug/rbug_context.c +++ b/src/gallium/auxiliary/rbug/rbug_context.c @@ -470,9 +470,6 @@ int rbug_send_context_draw_blocked(struct rbug_connection *__con, struct rbug_proto_context_list * rbug_demarshal_context_list(struct rbug_proto_header *header) { - uint32_t len = 0; - uint32_t pos = 0; - uint8_t *data = NULL; struct rbug_proto_context_list *ret; if (!header) @@ -480,9 +477,6 @@ struct rbug_proto_context_list * rbug_demarshal_context_list(struct rbug_proto_h if (header->opcode != (int32_t)RBUG_OP_CONTEXT_LIST) return NULL; - pos = 0; - len = header->length * 4; - data = (uint8_t*)&header[1]; ret = MALLOC(sizeof(*ret)); if (!ret) return NULL; @@ -490,7 +484,6 @@ struct rbug_proto_context_list * rbug_demarshal_context_list(struct rbug_proto_h ret->header.__message = header; ret->header.opcode = header->opcode; - return ret; } |