diff -r ee18735e534f -r 66edd310830c master/sdo_request.c --- a/master/sdo_request.c Thu Aug 13 10:13:02 2009 +0200 +++ b/master/sdo_request.c Thu Aug 13 13:53:56 2009 +0200 @@ -56,6 +56,7 @@ ec_sdo_request_t *req /**< SDO request. */ ) { + req->complete_access = 0; req->data = NULL; req->mem_size = 0; req->data_size = 0; @@ -88,6 +89,7 @@ const ec_sdo_request_t *other /**< Other SDO request to copy from. */ ) { + req->complete_access = other->complete_access; req->index = other->index; req->subindex = other->subindex; return ec_sdo_request_copy_data(req, other->data, other->data_size);