381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
|
# File 'ext/gpgme/gpgme_n.c', line 381
static VALUE
rb_s_gpgme_data_new_from_cbs (VALUE dummy, VALUE rdh, VALUE vcbs,
VALUE vhandle)
{
gpgme_data_t dh;
gpgme_error_t err;
VALUE vcbs_handle = rb_ary_new ();
rb_ary_push (vcbs_handle, vcbs);
rb_ary_push (vcbs_handle, vhandle);
err = gpgme_data_new_from_cbs (&dh, &cbs, (void*)vcbs_handle);
if (gpgme_err_code(err) == GPG_ERR_NO_ERROR)
{
VALUE vdh = WRAP_GPGME_DATA(dh);
/* Keep a reference to avoid GC. */
rb_iv_set (vdh, "@cbs_handle", vcbs_handle);
rb_ary_store (rdh, 0, vdh);
}
return LONG2NUM(err);
}
|