瀏覽代碼

Stack: Check for NULL config

Stefan Profanter 5 年之前
父節點
當前提交
d874c0fff7
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      plugins/ua_config_default.c

+ 3 - 0
plugins/ua_config_default.c

@@ -98,6 +98,9 @@ static UA_UsernamePasswordLogin usernamePasswords[2] = {
 
 static UA_StatusCode
 setDefaultConfig(UA_ServerConfig *conf) {
+	if (!conf)
+		return UA_STATUSCODE_BADINVALIDARGUMENT;
+
     /* Zero out.. All members have a valid initial value */
     UA_ServerConfig_clean(conf);
     memset(conf, 0, sizeof(UA_ServerConfig));