diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-09-04 21:04:07 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-09-04 21:04:07 +0200 |
commit | 4d4924e5105dbdfdcc3ff821671fba0dfeb11b11 (patch) | |
tree | bd337bd4c029744be88847e506b7e03da79e7093 /dom/indexedDB/KeyPath.h | |
parent | 4266966eeef44dfce422b9703692e519678610c6 (diff) | |
download | UXP-4d4924e5105dbdfdcc3ff821671fba0dfeb11b11.tar UXP-4d4924e5105dbdfdcc3ff821671fba0dfeb11b11.tar.gz UXP-4d4924e5105dbdfdcc3ff821671fba0dfeb11b11.tar.lz UXP-4d4924e5105dbdfdcc3ff821671fba0dfeb11b11.tar.xz UXP-4d4924e5105dbdfdcc3ff821671fba0dfeb11b11.zip |
Fix a crash in IndexedDB.
Diffstat (limited to 'dom/indexedDB/KeyPath.h')
-rw-r--r-- | dom/indexedDB/KeyPath.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/dom/indexedDB/KeyPath.h b/dom/indexedDB/KeyPath.h index c133cdc4a..e6e5f57d4 100644 --- a/dom/indexedDB/KeyPath.h +++ b/dom/indexedDB/KeyPath.h @@ -72,7 +72,10 @@ public: Parse(const Nullable<OwningStringOrStringSequence>& aValue, KeyPath* aKeyPath); nsresult - ExtractKey(JSContext* aCx, const JS::Value& aValue, Key& aKey) const; + ExtractKey(JSContext* aCx, + const JS::Value& aValue, + Key& aKey, + bool aCallGetters) const; nsresult ExtractKeyAsJSVal(JSContext* aCx, const JS::Value& aValue, @@ -82,9 +85,12 @@ public: (*ExtractOrCreateKeyCallback)(JSContext* aCx, void* aClosure); nsresult - ExtractOrCreateKey(JSContext* aCx, const JS::Value& aValue, Key& aKey, + ExtractOrCreateKey(JSContext* aCx, + const JS::Value& aValue, + Key& aKey, ExtractOrCreateKeyCallback aCallback, - void* aClosure) const; + void* aClosure, + bool aCallGetters) const; inline bool IsValid() const { return mType != NONEXISTENT; |