mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
fbb10cf73d
In the Windows-specific code path for IO.popen, the variable 'p' is a struct, not a pointer. The code was using 'p->klass' to access a member, which is incorrect and causes a build failure on Windows. This has been corrected to use the 'klass' argument directly. Co-authored-by: Gemini <gemini@google.com>