Scott Hutton

Results 8 comments of Scott Hutton

Subclassing 😔 In my particular case, things go sideways when you call `g_type_get_plugin()` on a instance of a subclass (in C land).

It does return NULL. Alas, it's a part of a [proprietary] system that uses that object for further introspection on the loaded library (namely, plucking out some exported symbols). It's...

Quite possibly, but I'm still a Rust novice, so it might be a bit 😉

I think the issue here is that this crate can only talk about URLs that are expected to eventually speak HTTP. The lack of `unix:///` is certainly a deficit, but...

Minimally, please add 'notice'. It's a key level in enterprise applications that's necessary for situations where you want low-noise logs, but need to see certain interesting events. 'Warning' is too...

This doesn't strike me as the best way to fix this (and might even break it). I think the problem really started upstream, in that `cvi_vba_inflate()` returns a `char *`,...

> > Bottom line, I think the better fix is to simply declare it `void *`, and then alias to (char *) so that it's correctly aligned. > > So...

(Comment based on the current PR content) Doesn't changing the type alter how this would work? ``` c &data[data_offset] ``` You'd need to adjust all those macros to adjust the...