RESOLVED FIXED 46028
[FileSystem] Fix Flags handling in DirectoryEntry custom binding code
https://bugs.webkit.org/show_bug.cgi?id=46028
Summary [FileSystem] Fix Flags handling in DirectoryEntry custom binding code
Kinuko Yasuda
Reported 2010-09-17 22:57:42 PDT
DirectoryEntry's custom code added by issue 45724 for FileSystem API has wrong RefPtr handling. When the given flags argument is an instance of Flags object, the custom code calls adoptRef to get a RefPtr from a raw Flags pointer returned by toFlags/toNative. However, toFlags/toNative returns an already adopted pointer so it should just assign the returned pointer rather than adopt assignment (the latter doesn't increment refCount).
Attachments
Patch (11.54 KB, patch)
2010-09-17 23:03 PDT, Kinuko Yasuda
dumi: review+
Kinuko Yasuda
Comment 1 2010-09-17 23:03:28 PDT
Dumitru Daniliuc
Comment 2 2010-09-20 13:52:06 PDT
Comment on attachment 67997 [details] Patch r=me. toFlags() returns a ref-counted object, because WebCore::Flags is ref-counted, right? if this is correct, it might be nice to mention this in the ChangeLog file (to make sure we don't copy-paste this code for some other class, and automatically assume that toNewClass() will be ref-counted too, when it might not be).
Kinuko Yasuda
Comment 3 2010-09-22 17:59:12 PDT
Note You need to log in before you can comment on or make changes to this bug.