# File lib/rack/protection/path_traversal.rb, line 13
      def call(env)
        path_was         = env["PATH_INFO"]
        env["PATH_INFO"] = cleanup path_was if path_was
        app.call env
      ensure
        env["PATH_INFO"] = path_was
      end