Carlos Martín Nieto
0da81d2b39
config: return an emtpy string when there is no value
...
Returning NULL for the string when we haven't signaled an error
condition is counter-intuitive and causes unnecessary edge
cases. Return an empty string when asking for a string value for a
configuration variable such as '[section] var' to avoid these edge
cases.
If the distinction between no value and an empty value is needed, this
can be retrieved from the entry directly. As a side-effect, this
change stops the int parsing functions from segfaulting on such a
variable.
2012-11-13 14:49:16 -08:00
Carlos Martín Nieto
47db054df0
config: distinguish between a lone variable name and one without rhs
...
'[section] variable' and '[section] variable =' behave differently
when parsed as booleans, so we need to store that distinction
internally.
2012-11-13 13:53:41 -08:00
Carlos Martín Nieto
3ee078c0f7
config: rename get_config_entry -> config_entry
...
We're already in the git_config namespace, there is no need to repeat
it.
2012-11-13 13:46:17 -08:00
Vicent Martí
3741a37f5e
Merge pull request #1055 from ethomson/sha1_win32
...
Win32 CryptoAPI and CNG support for SHA1
2012-11-13 13:28:08 -08:00
Vicent Martí
70572ff80b
Merge pull request #1064 from libgit2/http-parser-2
...
Bump the builtin http-parser to v2.0
2012-11-13 13:26:04 -08:00
Edward Thomson
2a612fe3c3
filebuf now has a git_hash_ctx instead of a ctx*
2012-11-13 14:57:35 -06:00
Edward Thomson
a8527429dc
unload dll / destroy hash ctxs at shutdown
2012-11-13 14:48:10 -06:00
Edward Thomson
7ebefd22e7
move hash library func ptrs to global global
2012-11-13 10:23:05 -06:00
Edward Thomson
603bee0791
Remove git_hash_ctx_new - callers now _ctx_init()
2012-11-13 10:23:05 -06:00
Edward Thomson
d6fb092409
Win32 CryptoAPI and CNG support for SHA1
2012-11-13 10:23:05 -06:00
Ben Straub
e45423dd2c
Merge pull request #1065 from nulltoken/fix/memory-leak
...
Fix memory leaks
2012-11-13 05:45:08 -08:00
Michael Schubert
d51e54f1f4
Remove unused variables
2012-11-13 14:28:44 +01:00
nulltoken
4e547eee31
test: fix memory leak
2012-11-13 07:12:53 +01:00
nulltoken
3dee36557e
local: fix memory leak
2012-11-13 07:04:30 +01:00
Vicent Marti
64ac9548aa
Bump the builtin http-parser
2012-11-12 15:42:03 -08:00
Vicent Marti
9a50026b19
clar-helpers: Oops, grab pointer
2012-11-12 15:38:28 -08:00
Vicent Marti
19c044a17d
Merge remote-tracking branch 'ben/local-transport' into development
2012-11-12 14:23:17 -08:00
Vicent Martí
3b44ced096
Merge pull request #1061 from nulltoken/topic/explicit-head-errors
...
repository: Refine repository_head() error report
2012-11-12 14:12:41 -08:00
Ben Straub
14157652ee
Remove unnecessary progress logic
...
The indexer handles this better than the fetch
logic does.
2012-11-12 07:57:03 -08:00
Ben Straub
0f5520f73a
Fix error check
2012-11-12 07:55:09 -08:00
nulltoken
b1a3a70ed1
repository: Refine repository_head() error report
2012-11-12 00:14:51 +01:00
nulltoken
ef8871515b
Fix compilation warning
2012-11-12 00:13:02 +01:00
Edward Thomson
e090a5681b
Merge pull request #1010 from ethomson/fetch_head
...
create FETCH_HEAD specially instead of as a ref file
2012-11-11 10:01:11 -08:00
Edward Thomson
b0f6e45d14
create FETCH_HEAD specially instead of as a ref file
2012-11-11 11:56:33 -06:00
Vicent Martí
d18713fb4a
Merge pull request #1056 from nulltoken/duplicate-tree-entries
...
Duplicate tree entries
2012-11-10 20:24:53 -08:00
Vicent Martí
29c16698b2
Merge pull request #1060 from nulltoken/topic/explicit-index-errors
...
Topic/explicit index errors
2012-11-10 20:24:23 -08:00
nulltoken
95d73de15f
index: prefer INDEX_OWNER usage
2012-11-10 21:10:49 +01:00
nulltoken
33f95a9b32
index: refine add_from_workdir() error report
2012-11-10 21:01:05 +01:00
nulltoken
69c068c79f
index: make git_index_new() work with a NULL path
2012-11-10 20:42:45 +01:00
nulltoken
353e991679
tests: Add missing assertions
2012-11-10 16:43:05 +01:00
Ben Straub
2ff1a0d0f0
Helpers for local-filesystem remote URLs
2012-11-09 16:59:46 -08:00
Vicent Martí
8a328cf442
Merge pull request #1058 from pwkelley/development
...
Fixes for two segfaults
2012-11-09 13:19:32 -08:00
Vicent Martí
39d7cf60de
Merge pull request #1059 from nulltoken/fix/config-open-level
...
config: make git_config_open_level() work with an empty config
2012-11-09 13:15:57 -08:00
Philip Kelley
fcd03bebbf
Fix a mutex/critical section leak
2012-11-09 15:57:32 -05:00
nulltoken
55f9837f11
config: make git_config_open_level() work with an empty config
2012-11-09 21:49:50 +01:00
Philip Kelley
2f683f0097
Fix uninitialized memory in winhttp subtransport on 64-bit
2012-11-09 15:39:25 -05:00
Philip Kelley
2364735c8f
Fix implementation of strndup to not overrun
2012-11-09 15:39:10 -05:00
Ben Straub
90207709a3
Avoid copying duplicate commits
2012-11-09 10:33:16 -08:00
Ben Straub
11fabe73a0
Local fetch: add tests
2012-11-09 10:33:10 -08:00
Ben Straub
505da062b8
Implement local transport's fetch
2012-11-09 10:33:05 -08:00
nulltoken
f92bcaea49
index: prevent tree creation from a non merged state
...
Fix libgit2/libgit2sharp#243
2012-11-09 16:45:47 +01:00
Vicent Martí
0f674411e9
Merge pull request #1052 from delanne/invalid_read
...
Valgrind reports Invalid Read when the configuration file contains some empty line
2012-11-09 06:16:44 -08:00
Vicent Martí
4d062d257b
Merge pull request #1057 from bts/patch-1
...
Update documentation in remote.h
2012-11-09 06:15:37 -08:00
Brian Schroeder
b0b8065880
Update documentation in remote.h
2012-11-08 21:28:15 -08:00
nulltoken
7cc1bf0fcb
index: Introduce git_index_has_conflicts()
2012-11-08 21:16:48 +01:00
nulltoken
29cc374d2e
tree: enforce coverage of silent entry replacement
2012-11-08 21:16:45 +01:00
Philip Kelley
9d64128325
Merge pull request #1048 from pwkelley/basic_auth
...
Basic authentication for http and winhttp
2012-11-08 08:06:23 -08:00
delanne
bcad677ba8
- Update 'tests-clar/resources/config/config11' in order to reproduce the invalidread with the unittest (just added some \n at the end of the file)
...
- Fix config_file.c
2012-11-08 12:28:21 +01:00
Vicent Martí
8ff2b0c759
Merge pull request #1039 from erikvanzijst/erik/tag_without_message
...
Correctly parse tags lacking a description
2012-11-07 16:30:55 -08:00
Ben Straub
721571cc5e
Merge pull request #1050 from edubart/development
...
Fix compilation for mingw32 and cygwin
2012-11-07 12:58:54 -08:00