• knielsen@ymer.(none)'s avatar
    Fix false Valgrind warning. · cb9e8bca
    knielsen@ymer.(none) authored
    On some compiler/platform combination, an assignment of form *p= *p
    would map to a memcpy() call, and Valgrind flags this as an overlapped
    memcpy() error.
    
    Fix by prefixing *p= *q with if(p!=q) when building for Valgrind
    (HAVE_purify).
    cb9e8bca
sql_select.cc 492 KB