]> git.notmuchmail.org Git - notmuch/blobdiff - lib/gen-version-script.sh
lib: fix g_hash_table related read-after-free bug
[notmuch] / lib / gen-version-script.sh
index 847700114ef8df1f634db307dd22423c655c90e8..5621f2a9fd85d35feaa7985898a2a67f5fe9ee51 100644 (file)
@@ -2,7 +2,7 @@ set -eu
 
 # we go through a bit of work to get the unmangled names of the
 # typeinfo symbols because of
-# http://sourceware.org/bugzilla/show_bug.cgi?id=10326
+# https://sourceware.org/bugzilla/show_bug.cgi?id=10326
 
 if [ $# -lt 2 ]; then
     echo Usage: $0 header obj1 obj2 obj3
@@ -17,7 +17,7 @@ nm  $* | awk '$1 ~ "^[0-9a-fA-F][0-9a-fA-F]*$" && $3 ~ "Xapian.*Error" {print $3
 while read sym; do
     demangled=$(c++filt $sym)
     case $demangled in
-       typeinfo*) 
+       typeinfo*)
            printf "\t$sym;\n"
            ;;
        *)