- 05 Dec, 2014 4 commits
-
-
Spelling fixes
nulltoken committed -
init: return the number of initializations
Carlos Martín Nieto committed -
Will Stamper committed
-
Edward Thomson committed
-
- 03 Dec, 2014 4 commits
-
-
Add missing else directive
Carlos Martín Nieto committed -
Add missing else directive to fix compiler warning: control reaches end of non-void function
Stefan Widgren committed -
win32: clear connection data on close
Carlos Martín Nieto committed -
Edward Thomson committed
-
- 01 Dec, 2014 1 commit
-
-
fix cl_git_mkfile() to test for -1 rather than 0 for errors from p_creat...
Edward Thomson committed
-
- 30 Nov, 2014 1 commit
-
-
describe: check error codes
Carlos Martín Nieto committed
-
- 29 Nov, 2014 1 commit
-
-
Edward Thomson committed
-
- 26 Nov, 2014 1 commit
-
-
Jeff Hostetler committed
-
- 23 Nov, 2014 3 commits
-
-
Regain non-threadsafe builds and make the valgrind build failable
Edward Thomson committed -
peel: reject bad queries with EPEEL
Edward Thomson committed -
Valgrind is now clean except for libssl and libgcrypt.
Carlos Martín Nieto committed
-
- 22 Nov, 2014 4 commits
-
-
There are some combination of objects and target types which we know cannot be fulfilled. Return EINVALIDSPEC for those to signify that there is a mismatch in the user-provided data and what the object model is capable of satisfying. If we start at a tag and in the course of peeling find out that we cannot reach a particular type, we return EPEEL.
Carlos Martín Nieto committed -
When flipping the default to threadsafe, we never made sure that the tests were building non-threadsafe variants. Specify which thead-safety we want for each.
Carlos Martín Nieto committed -
We don't need to know the result of the travis run before determining whether we want to consider the merge as successful.
Carlos Martín Nieto committed -
Fix for misleading "missing delta bases" error.
Carlos Martín Nieto committed
-
- 21 Nov, 2014 12 commits
-
-
Ravindra Patel committed
-
Do not assume blob contents are NULL terminated
Edward Thomson committed -
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
Vicent Marti committed
-
That's a bad assumption to make, even though right now it holds (because of the way we've implemented decompression of packfiles), this may change in the future, given that ODB objects can be binary data. Furthermore, the ODB object can return a NULL pointer if the object is empty. Copying the NULL pointer to the strbuf lets us handle it like an empty string. Again, the NULL pointer is valid behavior because you're supposed to check the *size* of the object before working on it.
Vicent Marti committed -
Vicent Marti committed
-
Run shell scripts through shellcheck
Edward Thomson committed -
Fix for memory leak issue in indexer.c, that surfaces on windows
Carlos Martín Nieto committed -
odb: `git_odb_object` contents are never NULL
Vicent Marti committed -
This is a contract that we made in the library and that we need to uphold. The contents of a blob can never be NULL because several parts of the library (including the filter and attributes code) expect `git_blob_rawcontent` to always return a valid pointer.
Vicent Marti committed
-
- 20 Nov, 2014 5 commits
-
-
Ungureanu Marius committed
-
Update message for error during push
Vicent Marti committed -
Clarify the git_remote_ls() documentation
Vicent Marti committed -
fetch: clear the connection data on close
Vicent Marti committed -
travis: disable the cert callback on OSX
Edward Thomson committed
-
- 19 Nov, 2014 4 commits
-
-
The sshd on OSX has stopped responding to the setting which this test assumes is there, so let's disable it until we can figure out what's happening.
Carlos Martín Nieto committed -
When we fetch twice with the same remote object, we did not properly clear the connection flags, so we would leak state from the last connection. This can cause the second fetch with the same remote object to fail if using a HTTP URL where the server redirects to HTTPS, as the second fetch would see `use_ssl` set and think the initial connection wanted to downgrade the connection.
Carlos Martín Nieto committed -
Ravindra Patel committed
-
On disconnect we simply ask the transport to close the connection, we do not free it.
Carlos Martín Nieto committed
-