Skip to content

Commit

Permalink
Fixes #936 (Non-null terminated log domain strings cause crashing)
Browse files Browse the repository at this point in the history
  • Loading branch information
borrrden committed Dec 17, 2017
1 parent 616bc1d commit 38d73b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/couchbase-lite-core
Submodule couchbase-lite-core updated 46 files
+1 −0 C/c4.def
+1 −0 C/c4.exp
+5 −0 C/c4Document.cc
+6 −0 C/include/c4Document+Fleece.h
+1 −1 C/include/config.py
+5 −9 CSharp/src/LiteCore.Shared/Interop/C4Base.cs
+0 −3 CSharp/src/LiteCore.Shared/Interop/C4Base_native.cs
+2 −3 CSharp/test/LiteCore.Tests.Shared/Test.cs
+2 −2 Java/jni/native_c4database.cc
+2 −1 Java/src/com/couchbase/litecore/fleece/FLArrayIterator.java
+16 −12 Java/src/com/couchbase/litecore/fleece/FLValue.java
+76 −0 LiteCore/Database/Document.cc
+2 −0 LiteCore/Database/Document.hh
+51 −16 LiteCore/Support/Logging.cc
+8 −2 LiteCore/Support/Logging.hh
+5 −0 LiteCore/Support/StringUtil.cc
+5 −0 LiteCore/Support/StringUtil.hh
+3 −0 Replicator/DBWorker.hh
+2 −1 Replicator/IncomingBlob.cc
+3 −3 Replicator/IncomingBlob.hh
+2 −1 Replicator/IncomingRev.cc
+1 −0 Replicator/IncomingRev.hh
+2 −0 Replicator/Puller.hh
+1 −0 Replicator/Pusher.cc
+3 −0 Replicator/Pusher.hh
+2 −0 Replicator/Replicator.hh
+1 −0 Replicator/Worker.cc
+2 −3 Replicator/Worker.hh
+18 −133 Xcode/LiteCore.xcodeproj/project.pbxproj
+0 −132 Xcode/LiteCore.xcodeproj/xcshareddata/xcschemes/litecp tool.xcscheme
+3 −20 tools/CMakeLists.txt
+5 −0 tools/Tool.cc
+65 −60 tools/Tool.hh
+0 −50 tools/ToolUtils.cc
+0 −47 tools/ToolUtils.hh
+93 −0 tools/cblite/cbliteTool+cp.cc
+20 −1 tools/cblite/cbliteTool.cc
+34 −19 tools/cblite/cbliteTool.hh
+43 −28 tools/litecp/DBEndpoint.cc
+2 −0 tools/litecp/DBEndpoint.hh
+7 −7 tools/litecp/DirEndpoint.cc
+10 −1 tools/litecp/Endpoint.cc
+14 −8 tools/litecp/Endpoint.hh
+5 −7 tools/litecp/JSONEndpoint.cc
+3 −3 tools/litecp/RemoteEndpoint.cc
+0 −131 tools/litecp/litecp.cc

0 comments on commit 38d73b2

Please sign in to comment.