master/sdo_request.c
changeset 1580 1baac79a40cf
parent 1526 66edd310830c
child 1543 373cd456dc26
--- a/master/sdo_request.c	Thu Nov 19 14:39:10 2009 +0100
+++ b/master/sdo_request.c	Thu Nov 19 14:44:57 2009 +0100
@@ -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);