projects
/
profile
/
ivi
/
pulseaudio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5a5b56
)
Some memcpy arithmetic that wasn't removed when doing the redesign to update
author
Pierre Ossman
<ossman@cendio.se>
Fri, 7 Apr 2006 06:29:59 +0000
(06:29 +0000)
committer
Pierre Ossman
<ossman@cendio.se>
Fri, 7 Apr 2006 06:29:59 +0000
(06:29 +0000)
the data pointer instead.
git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@654
fefdeb5f
-60dc-0310-8127-
8f9354f1896f
src/polypcore/protocol-esound.c
patch
|
blob
|
history
diff --git
a/src/polypcore/protocol-esound.c
b/src/polypcore/protocol-esound.c
index
e987117
..
e29c44c
100644
(file)
--- a/
src/polypcore/protocol-esound.c
+++ b/
src/polypcore/protocol-esound.c
@@
-669,7
+669,7
@@
static int esd_proto_sample_cache(struct connection *c, PA_GCC_UNUSED esd_proto_
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
data = (const char*)data + sizeof(int32_t);
- memcpy(&rate,
(const char*)data + sizeof(int32_t)
, sizeof(int32_t));
+ memcpy(&rate,
data
, sizeof(int32_t));
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
data = (const char*)data + sizeof(int32_t);