freebsd-ports/archivers/libcabinet/files/patch-bstring.cpp
Edwin Groothuis 8a8b31d05c [patch] Unbreak port: archivers/libcabinet
This port did not build with gcc 3.3.1. I also fixed a
	possible buffer overflow (they used gets() to read from
	stdin).

	Please review the patch file ``patch-cftypes.cpp'' with
	extra care, since I am not sure whether this makes sense
	(2 positions in the file, marked with ``TODO'' - thanks.

Also added some lines in cftypes.cpp to overcome the absence of
values.h on -current.

PR:		ports/55767
Submitted by:	Simon Barner <barner@in.tum.de>
2003-08-31 13:09:31 +00:00

12 lines
228 B
C++

--- bstring.cpp.orig Sun Aug 31 05:49:53 2003
+++ bstring.cpp Sun Aug 31 05:49:53 2003
@@ -91,7 +91,7 @@
b_string b_string::operator + (const char* s)
{
- b_string temp = str;
+ b_string temp (str);
return temp += s;
}