首页 > 代码库 > 编译android4.4 报错error: call to '__property_get_too_small_error' declared with attribute 的处理 (转载)
编译android4.4 报错error: call to '__property_get_too_small_error' declared with attribute 的处理 (转载)
转自:http://blog.csdn.net/syhost/article/details/14448899
完整的报错为:
system/core/include/cutils/properties.h:64:39: error: call to ‘__property_get_too_small_error‘ declared with attribute error: property_get() called with too small of a bufferIn function ‘property_get‘,
解决方法:
找到调用property_get的地方 将中间一个数组参数的定义改一下:
比如:
之前为:
value[128];
.
.
property_get("persist.xxx.xxxx",value,"0");
改为:
value[PROPERTY_VALUE_MAX];
.
.
property_get("persist.xxx.xxxx",value,"0");
编译android4.4 报错error: call to '__property_get_too_small_error' declared with attribute 的处理 (转载)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。