1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/databases/oracle_odbc_driver/files/patch-src-string_functions.c
Max Khon 04225b60bf New port: oracle_odbc_driver 0.5.5
Oracle Open Source ODBC driver.
2005-08-31 19:03:43 +00:00

36 lines
906 B
C

--- src/string_functions.c.orig Thu Jun 9 18:18:53 2005
+++ src/string_functions.c Thu Jun 9 18:18:36 2005
@@ -81,19 +81,25 @@
{
char *local_str=NULL;
int i;
- if(str_len==SQL_NTS){
- if(str&&str[0])
- for(i=0; i<strlen(str); i++)
- str[i]=toupper(str[i]);
- return((char*)str);
- }
+
+ if(str_len==SQL_NTS)
+ {
+ if(!str || !str[0])
+ return((char*)str);
+
+ /*
+ * always copy to malloc'ed string because str
+ * may point to read-only memory
+ */
+ str_len = strlen(str);
+ }
if(str_len>=0)
{
local_str=ORAMALLOC(str_len+1);
memcpy(local_str,str,str_len);
local_str[str_len] = '\0';
}
- for(i=0; i<str_len; i++)local_str[i]=toupper(local_str[i]);
+ for(i=0; i<str_len; i++)local_str[i]=toupper((unsigned char) local_str[i]);
return(local_str);
}