Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BUG 3409: solved (i hope) #3444

Closed
vicuna opened this issue Jan 24, 2005 · 2 comments
Closed

BUG 3409: solved (i hope) #3444

vicuna opened this issue Jan 24, 2005 · 2 comments
Labels

Comments

@vicuna
Copy link

vicuna commented Jan 24, 2005

Original bug ID: 3444
Reporter: administrator
Status: closed
Resolution: fixed
Priority: normal
Severity: minor
Category: ~DO NOT USE (was: OCaml general)

Bug description

Full_Name: Matthieu Dubuget
Version: 3.08.0
OS: Windows XP Pro
Submission from: adijon-106-1-21-242.w81-50.abo.wanadoo.fr (81.50.198.242)

When I submitted the 3409 bug, i used "Printf module and DLL creation" as a
subject.

After some more tries, it appears that the problem comes from the way I was
calling caml_startup. I used

char *vide = 0l;
caml_startup (&vide);

But it appears that the parameter of caml_startup must not be a void array.

Using the following solves the problem I encoutered. At least I hope!

char * vide[2];

vide[0]="nimportequoi";
vide[1]=NULL;
caml_startup(vide);

Je ne sais pas s'il s'agit d'un bug ou non ?

Salutations

Matthieu

@vicuna
Copy link
Author

vicuna commented Jan 27, 2005

Comment author: administrator

Full_Name: Matthieu Dubuget
Version: 3.08.0
OS: Windows XP Pro
Submission from: adijon-106-1-21-242.w81-50.abo.wanadoo.fr (81.50.198.242)

Bonjour,

But it appears that the parameter of caml_startup must not be a void array.
[...]
Je ne sais pas s'il s'agit d'un bug ou non ?

Merci pour le rapport de bug. C'est repare dans la version CVS.

-- Damien

@vicuna
Copy link
Author

vicuna commented Jan 27, 2005

Comment author: administrator

see also #3409
fixed DD 2005-01-27

@vicuna vicuna closed this as completed Jan 27, 2005
@vicuna vicuna added the bug label Mar 19, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant