# File lib/chef/win32/memory.rb, line 68
      def self.local_free(pointer)
        result = LocalFree(pointer)
        if !result.null?
          Chef::ReservedNames::Win32::Error.raise!
        end
      end