Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
According to coverity report, below code has FORWARD NULL issue:
In apache-hawq/src/backend/resourcemanager/resourcebroker
if (!cache) {
if (0 != setenv("KRB5CCNAME", cache, 1))
}
If the cache is NULL, it will be error in setenv.