diff options
| author | 2009-03-15 03:09:34 +0100 | |
|---|---|---|
| committer | 2009-03-15 03:09:34 +0100 | |
| commit | 2c3c90055ba597ee9df271403de0dcdd620244f7 (patch) | |
| tree | 71ec6cf2eb61fe91936665b100267f93e7f75c8e | |
| parent | e619bed09a001f074858fe084dc93d60924beca0 (diff) | |
| download | usbmuxd-2c3c90055ba597ee9df271403de0dcdd620244f7.tar.gz usbmuxd-2c3c90055ba597ee9df271403de0dcdd620244f7.tar.bz2 | |
increased buffer size in client handler and added missing variable
initialization.
| -rw-r--r-- | main.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| @@ -326,7 +326,7 @@ static void *usbmuxd_client_handler_thread(void *arg)      struct client_data *cdata;      int result;      char *cursor; -    char buffer[1024]; +    char buffer[65536];      ssize_t len;      ssize_t maxlen = sizeof(buffer);      uint32_t wlen; @@ -474,7 +474,7 @@ static void *usbmuxd_client_init_thread(void *arg)  //    int sent_result;  //    iphone_error_t err; -    iphone_device_t phone; +    iphone_device_t phone = NULL;      struct device_use_info *cur_dev = NULL;      if (!arg) { | 
