mod_http_upload: Avoid catch-all error handling

This commit is contained in:
Holger Weiss 2019-05-27 21:56:37 +02:00
parent a06bdb1721
commit 8b301fc93e
1 changed files with 0 additions and 2 deletions

View File

@ -833,8 +833,6 @@ do_store_file(Path, Request, FileMode, DirMode) ->
end
catch
_:{badmatch, {error, Error}} ->
{error, Error};
_:Error ->
{error, Error}
end.