C++News

Buffer Overflow in the C/C++ RTL

We recently identified a potential buffer overflow in the C/C++ runtime library (RTL). Although this is an issue that was introduced to the code in 1997 with no exploitation since its introduction, we are publishing a notification and a fix for safety and openness, out of an abundance of caution. Issue information: Affects _wgetcurdir, _wsearchstr, plus the “_t” variants _tgetdcwd and…
Read more
C++How-To'sModernizationRAD StudioWindows

How to achieve common tasks with the new Clang toolchain in 12.1

How to achieve common tasks with the new Clang toolchain in 12.1 The new Clang toolchain is here! RAD Studio and C++Builder 12.1 are shipping the entirely revised, wholly updated C++ compiler, linker, STL, runtime, and more – which you can also use in parallel with the old Win64 toolchain to ease upgrading until we remove the previous legacy toolchain in future. We know this is a ‘version 1’…
Read more
C++IDEModernizationNewsProductivityRAD StudioShowcase

[Yukon Beta Blog] C++ and Visual Assist in RAD Studio 12.0

This blog post is based on a pre-release version of the RAD Studio software and it has been written with specific permission by Embarcadero. No feature is committed until the product GA release. RAD Studio 12 is just around the corner, with our release webinar this Thursday! Back in August, we gave a preview webinar of what is being worked on internally for C++, covering a preview of the…
Read more
C++CodeIDEModernizationRAD Studio

What are vcle.lib and rtle.lib?

Solving an interesting issue upgrading a project from Classic to Clang. A recent blog comment asked for help where a Clang project was linking to vcle.lib, but the library did not exist in the Clang linking path (lib/win32c/release): it’s present only for the classic compiler in lib/win32/release. (Note the C in win32c, meaning Clang.) Why? If you see this error, how do you resolve it and…
Read more