apr/apr-1.4.2-pr50190.patch
2011-03-02 11:17:35 +00:00

14 lines
309 B
Diff

--- apr-1.4.2/include/apr_ring.h.pr50190
+++ apr-1.4.2/include/apr_ring.h
@@ -90,8 +90,8 @@
*/
#define APR_RING_HEAD(head, elem) \
struct head { \
- struct elem *next; \
- struct elem *prev; \
+ struct elem * volatile next; \
+ struct elem * volatile prev; \
}
/**