本文主要是介绍结构体初值设置问题小记,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 前言
- esp32 panic报错LoadProhibited
- 原因探究
前言
在搞esp32 ota功能的时候,esp32一加上空中升级的功能,就不断重启。查了两天,才发现是结构体初始化赋值的问题。
esp32 panic报错LoadProhibited
esp32ota的用来初始化的结构体大致长这个样子,有指针和其他类型的esp_http_client_config_t
typedef struct {const char *url; /*!< HTTP URL, the information on the URL is most important, it overrides the other fields below, if any */const char *host; /*!< Domain or IP as string */int port; /*!< Port to connect, default depend on// ....} esp_http_client_config_t;
我的程序,我在初始化结构体的时候,没有在定义的时候定义并初始化。
esp_http_client_config_t config;config.url = "http://192.168.1.65:8888//hello_world.bin",config.cert_pem = (char *)server_cert_pem_start,config.keep_alive_enable = true,
在查coredump信息的时候发现,挂在了读config->path这里。
正确的程序
esp_http_client_config_t config = {.url = "http://192.168.1.65:8888//smart_car.bin",.cert_pem = (char *)server_cert_pem_start,.keep_alive_enable = true, };
原因探究
探究其根本原因就是,如果结构体的成员有指针的话,如果不采用定义的时候就初始化的话,指针是野指针,会指向随意一块内存。做个测试。测试代码如下:
#include <iostream>
typedef struct
{int num;const char* path;
} structA;int main()
{structA a;a.num=100;std::cout<<a.path<<std::endl;return 0;
}
如果是这样初始化结构体,可以发现,会抛出异常,可以看到指向的内存是地址是0x10。
如果在定义的时候初始化结构体,指针就会是一个空指针。就不会抛出异常。
这篇关于结构体初值设置问题小记的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!