diff options
| author | 2013-12-01 21:15:17 +0100 | |
|---|---|---|
| committer | 2013-12-01 21:15:17 +0100 | |
| commit | bccb637758452b1850d303886b14de4d57a2be92 (patch) | |
| tree | dfc36d05f3f80024c1028342d8b29ab9f889268f /src | |
| parent | 51528a586ee2e3f271181eb852359428ddfb1fb3 (diff) | |
| download | idevicerestore-bccb637758452b1850d303886b14de4d57a2be92.tar.gz idevicerestore-bccb637758452b1850d303886b14de4d57a2be92.tar.bz2  | |
dfu: remove some unused variables
Diffstat (limited to 'src')
| -rw-r--r-- | src/dfu.c | 9 | 
1 files changed, 0 insertions, 9 deletions
@@ -161,7 +161,6 @@ int dfu_send_component(struct idevicerestore_client_t* client, plist_t build_ide  	uint32_t size = 0;  	unsigned char* data = NULL;  	char* path = NULL; -	unsigned char* blob = NULL;  	irecv_error_t err = 0;  	int flag = 1; @@ -235,8 +234,6 @@ int dfu_send_component(struct idevicerestore_client_t* client, plist_t build_ide  }  int dfu_get_cpid(struct idevicerestore_client_t* client, unsigned int* cpid) { -	irecv_error_t dfu_error = IRECV_E_SUCCESS; -  	if(client->dfu == NULL) {  		if (dfu_client_new(client) < 0) {  			return -1; @@ -254,8 +251,6 @@ int dfu_get_cpid(struct idevicerestore_client_t* client, unsigned int* cpid) {  }  int dfu_get_ecid(struct idevicerestore_client_t* client, uint64_t* ecid) { -	irecv_error_t recovery_error = IRECV_E_SUCCESS; -  	if(client->dfu == NULL) {  		if (dfu_client_new(client) < 0) {  			return -1; @@ -289,8 +284,6 @@ int dfu_is_image4_supported(struct idevicerestore_client_t* client)  }  int dfu_get_ap_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size) { -	irecv_error_t dfu_error = IRECV_E_SUCCESS; -  	if(client->dfu == NULL) {  		if (dfu_client_new(client) < 0) {  			return -1; @@ -315,8 +308,6 @@ int dfu_get_ap_nonce(struct idevicerestore_client_t* client, unsigned char** non  }  int dfu_get_sep_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size) { -	irecv_error_t dfu_error = IRECV_E_SUCCESS; -  	if(client->dfu == NULL) {  		if (dfu_client_new(client) < 0) {  			return -1;  | 
