Browse Source

example/openssl_client: Fix http string "printf" error without end character '\0'

Dong Heng 8 years ago
parent
commit
d523a5181b

+ 1 - 0
examples/protocols/openssl_client/main/openssl_client_example_main.c

@@ -137,6 +137,7 @@ static void openssl_example_task(void *p)
         if (ret <= 0) {
             break;
         }
+        recv_buf[ret] = '\0';
         recv_bytes += ret;
         ESP_LOGI(TAG, "%s", recv_buf);
     } while (1);