blob: 4af039d3cd07c982c9bfa7eb1414fb3ff9298be5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--- main.c.orig 2005-01-29 03:31:33.000000000 +0000
+++ main.c 2010-12-20 11:09:11.000000000 +0000
@@ -1441,6 +1441,9 @@
/* null terminate the result to make string handling easier */
tmp_size = (ret_format / 8) * ret_nitems;
+ /* Correct 64 Architecture implementation of 32 bit data */
+ if (ret_format == 32)
+ tmp_size *= sizeof(long)/4;
ret = g_malloc(tmp_size + 1);
memcpy(ret, ret_prop, tmp_size);
ret[tmp_size] = '\0';
|