You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While investing some code for #302, I noticed that node-gtk doesn't seem to take argument's transfer mode into account while filing GIArgument. So, I wrote a test case to test that, and it seems like it's the case.
letgstPromise=newGst.Promise();letstructure=Gst.Structure.newEmpty('test');gstPromise.reply(structure);// gstPromise now owns backing GstStructure.gstPromise=null;global.gc();// Causes an assertion and return falseconsole.log(structure.isEqual(structure));
I've turned this into a test case for node-gtk in #303, so when it's fixed, there will be a test case ready.
The text was updated successfully, but these errors were encountered:
While investing some code for #302, I noticed that node-gtk doesn't seem to take argument's transfer mode into account while filing
GIArgument
. So, I wrote a test case to test that, and it seems like it's the case.I've turned this into a test case for node-gtk in #303, so when it's fixed, there will be a test case ready.
The text was updated successfully, but these errors were encountered: