Yes, 64-bit support for VS2008 will be part of the final release.
Updated project files will be pushed to the SVN repository in the
coming days.
Release will be later this month.
Best regards,
--
Günter Obiltschnig
Applied Informatics Software Engineering GmbH
A-9184 St. Jakob im Rosental | St. Peter 33 | http://www.appinf.com
P: +43 4253 32596 M: +43 676 5166737 F: +43 4253 32096
Company Registration: FN 276491 f | Landesgericht Klagenfurt
Managing Director: DI Günter Obiltschnig
On 18.08.2010, at 22:09, Bob Cook wrote:
> Thanks. I notice on the POCO blog page mention of 64-bit support for
> Visual Studio 2008. I didn't see anything in the current SVN for
> this, nor in the CHANGELOG. Is this still planned for the 1.4
> release? And do you have an estimated release date for 1.4 now?
>
> --
> Bob Cook
> Development Manager
>
> email: bob.cook@...
> tel: 1-604-484-6815
> SOPHOS - simply secure
>
>> -----Original Message-----
>> From: Günter Obiltschnig [mailto:guenter.obiltschnig@...]
>> Sent: Wednesday, August 18, 2010 12:04 PM
>> To: Bob Cook
>> Cc: poco-develop@...
>> Subject: Re: [poco-develop] WinRegistryKey::getInt() bug
>>
>> Thank you. I've fixed this in the 1.3.7 branch, rev. 1401.
>>
>> Best regards,
>>
>> Günter
>>
>> --
>> Günter Obiltschnig
>> Applied Informatics Software Engineering GmbH
>> A-9184 St. Jakob im Rosental | St. Peter 33 | http://www.appinf.com
>> P: +43 4253 32596 M: +43 676 5166737 F: +43 4253 32096
>>
>> Company Registration: FN 276491 f | Landesgericht Klagenfurt
>> Managing Director: DI Günter Obiltschnig
>>
>>
>>
>>
>> On 18.08.2010, at 20:37, Bob Cook wrote:
>>
>>> WinRegistryKey::getInt() bug with uninitialized variable (Util/src/
>>> WinRegistryKey.cpp)
>>>
>>> Discovered in 1.3.6p2 and appears to be unfixed in latest SVN.
>>>
>>> The size variable passed to RegQueryValueExW() on lines 229 and 232
>>> should be initialized to the size of the output buffer. Not
>>> initializing this parameter is incorrect when the data buffer
>>> pointer is not NULL, according to Microsoft documentation. Random
>>> failures observed in production code as a result of this.
>>>
>>> Resolution is to change line 225 of Util/src/WinRegistryKey.cpp to
>> be:
>>>
>>> DWORD size = sizeof(data);
>>>
>>> Apologies, don't have a correct 'patch' version of this change.
>>>
>>> --
>>> Bob Cook
>>> Development Manager
>>>
>>> email: bob.cook@...
>>> tel: 1-604-484-6815
>>> SOPHOS - simply secure
>>>
>>>
>>> ---------------------------------------------------------------------
>> ---------
>>> This SF.net email is sponsored by
>>>
>>> Make an app they can't live without
>>> Enter the BlackBerry Developer Challenge
>>> http://p.sf.net/sfu/RIM-dev2dev
>>> _______________________________________________
>>> poco-develop mailing list
>>> poco-develop@...
>>> https://lists.sourceforge.net/lists/listinfo/poco-develop
>
>
> ------------------------------------------------------------------------------
> This SF.net email is sponsored by
>
> Make an app they can't live without
> Enter the BlackBerry Developer Challenge
> http://p.sf.net/sfu/RIM-dev2dev
> _______________________________________________
> poco-develop mailing list
> poco-develop@...
> https://lists.sourceforge.net/lists/listinfo/poco-develop
>
|