diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-07 06:33:44 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2011-03-08 01:50:03 -0800 |
commit | dfdb9ae0d3bc3689c3ca7b59e92f45c1b3ecb28f (patch) | |
tree | b2a20091c1ff238a838b6cfaaf36ecb80950ca0c /MobileCydia.mm | |
parent | 86cf87e24a37797fc9899825bd5ce1f1f5c1ce04 (diff) |
Fix _H<> copy assignment operator.
Diffstat (limited to 'MobileCydia.mm')
-rw-r--r-- | MobileCydia.mm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MobileCydia.mm b/MobileCydia.mm index ace39b4..92bce95 100644 --- a/MobileCydia.mm +++ b/MobileCydia.mm @@ -1462,8 +1462,7 @@ static void PackageImport(const void *key, const void *value, void *context) { host_ = [host_ lowercaseString]; if (host_ != nil) - // XXX: this is due to a bug in _H<> - authority_ = (id) host_; + authority_ = host_; else authority_ = [url path]; } |