upload-pack: Check for NOT_SHALLOW flag before sending a shallow to the client.
A commit may have been put on the shallow list, and then reached from another branch and marked NOT_SHALLOW without being removed from the list. Signed-off-by: Alexandre Julliard <julliard@winehq.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:

committed by
Junio C Hamano

parent
d6491e3a21
commit
1f2de76981
@ -565,7 +565,7 @@ static void receive_needs(void)
|
|||||||
SHALLOW, NOT_SHALLOW);
|
SHALLOW, NOT_SHALLOW);
|
||||||
while (result) {
|
while (result) {
|
||||||
struct object *object = &result->item->object;
|
struct object *object = &result->item->object;
|
||||||
if (!(object->flags & CLIENT_SHALLOW)) {
|
if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
|
||||||
packet_write(1, "shallow %s",
|
packet_write(1, "shallow %s",
|
||||||
sha1_to_hex(object->sha1));
|
sha1_to_hex(object->sha1));
|
||||||
register_shallow(object->sha1);
|
register_shallow(object->sha1);
|
||||||
|
Reference in New Issue
Block a user