summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-12 06:15:40 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-12 06:15:40 +0000
commit64b589b367d739399c47ea083f0c2a7bb1016e14 (patch)
tree0f5b7e9ab1731805e0b89b8f8d984d9d22a079ba /eval.c
parent67761e8e5621997f026008884c97a2f979a16c93 (diff)
downloadruby-64b589b367d739399c47ea083f0c2a7bb1016e14.tar.gz
ruby-64b589b367d739399c47ea083f0c2a7bb1016e14.tar.xz
ruby-64b589b367d739399c47ea083f0c2a7bb1016e14.zip
* eval.c (ruby_options): now we cannot call rb_glob() before
ruby_init(), so call rb_w32_cmdvector() at ruby_options(). * win32.{c,h} (rb_w32_cmdvector): rename make_cmdvector() and export it. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7256 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index cb6de62ae..da82e0ea8 100644
--- a/eval.c
+++ b/eval.c
@@ -1364,6 +1364,10 @@ ruby_options(argc, argv)
{
int state;
+#ifdef _WIN32
+ argc = rb_w32_cmdvector(GetCommandLine(), &argv);
+#endif
+
Init_stack((void*)&state);
PUSH_TAG(PROT_NONE);
if ((state = EXEC_TAG()) == 0) {
@@ -1375,6 +1379,10 @@ ruby_options(argc, argv)
exit(error_handle(state));
}
POP_TAG();
+
+#ifdef _WIN32_WCE
+ wce_FreeCommandLine();
+#endif
}
void rb_exec_end_proc _((void));