Bug Maria_Connect() FWH-24.07 64 bits ???
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
Never mind, there was a problem in the xHarbour/MSC32 build. Now it is fixed:
http://www.xharbour.org/files/download/ ... vc2022.zip
http://www.xharbour.org/files/download/ ... vc2022.zip
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
As a resume:
Code: Select all | Expand
TEST HB_GCALL()
MSC32: OK
MSC64: CRASH
BCC32: OK
BCC64: CRASH
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
What is this method for?
If I remove it the crash goes away. And also if I replace DESTRUCTOR with METHOD.
Code: Select all | Expand
fwmariarowset_Destroy()
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
In fwmariarowset_Destroy(), if I put
the result is
Something wrong here...
Code: Select all | Expand
? k
Code: Select all | Expand
4171717171
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
Can we restrict the destructor method not to work with xHarbour 64 bits only?
Let me try
Let me try
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
- nageswaragunupudi
- Posts: 10691
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
At the top of the module
Next apply the same condition to the entire body of the Procedure
Do you think this should be ok?
Code: Select all | Expand
#ifdef __XHARBOUR__
#ifdef __64__
#define __XHARBOUR64__
#endif
#endif
Code: Select all | Expand
#ifndef __XHARBOUR64__
DESTRUCTOR fwmariarowset_Destroy()
#endif
Do you think this should be ok?
Regards
G. N. Rao.
Hyderabad, India
G. N. Rao.
Hyderabad, India
- Enrico Maria Giordano
- Posts: 8728
- Joined: Thu Oct 06, 2005 8:17 pm
- Location: Roma - Italia
- Contact:
Re: Bug Maria_Connect() FWH-24.07 64 bits ???
Yes, I think so. But the question is: why do you need an explicit destructor?