| commit | 924a4741d92417a29495fed39e371c8556a1e6c5 | [log] [tgz] |
|---|---|---|
| author | Etienne Carriere <etienne.carriere@linaro.org> | Thu Mar 21 09:43:35 2019 +0100 |
| committer | Jerome Forissier <jerome.forissier@linaro.org> | Thu Mar 21 09:46:53 2019 +0100 |
| tree | 72cffa7a98788a631f0ca3863e465e413edf3f07 | |
| parent | 9dbc61b3767ab1c3dfd0a19af02926b92ae09247 [diff] |
Explicitly initialize local variables This change initializes all local variables to prevent build issues (warnings and/or errors) in OP-TEE client package. Use memset() to initialize structured and typed variables. This change changes ordering in the local variable definition block at function head. Structured variables are defined below, right above the memset() call block for their initialization, when possible. Signed-off-by: Etienne Carriere <etienne.carriere@linaro.org> Reviewed-by: Jens Wiklander <jens.wiklander@linaro.org>
This git contains source code for the non-secure side implementation of the OP-TEE project making up the client library and tee-supplicant.
All official OP-TEE documentation has moved to http://optee.readthedocs.io. The information that used to be here in this git can be found under optee_client.
// OP-TEE core maintainers