Closed
Description
starting at line 1223 in app/Base.java, addLibraries calls Compiler.headerListFromIncludePath
It then immediately uses the returned value without checking for null first.
Compiler.headerListFromIncludePath returns the return value of File.list(), which can return null if an IO error occurs.
This results in nullpointerexception if said directory has permissions that don't allow you to list() it.