]
Tomaz Cerar commented on ELY-615:
---------------------------------
Better than using file.mkdirs() would be to use Files#createDirectories as it properly
throws exceptions
Improvement for usage of file.mkdirs() in
FileSystemSecurityRealm.Identity
--------------------------------------------------------------------------
Key: ELY-615
URL:
https://issues.jboss.org/browse/ELY-615
Project: WildFly Elytron
Issue Type: Bug
Affects Versions: 1.1.0.Beta7
Reporter: Ondrej Lukas
Assignee: Darran Lofthouse
Priority: Minor
Labels: static_analysis
Fix For: 1.1.0.Beta8
There is method {{tempPath()}} in
org.wildfly.security.auth.realm.FileSystemSecurityRealm.Identity which uses
{{file.mkdirs()}} without checking its return value. It is bad practice to ignore return
value of this method (since false means that file has not been created and it can result
to any unexpected and confusing failure later).