Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
Files
Commits
47bf5ad6
Commit
47bf5ad6
authored
Jan 26, 2000
by
Darin Adler
Browse files
Fixed an assert I missed.
* libnautilus/nautilus-directory.c: (nautilus_file_get_name): Fixed an assert I missed.
parent
c796ee4c
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog-20000414
View file @
47bf5ad6
2000-01-26 Darin Adler <darin@eazel.com>
* libnautilus/nautilus-directory.c:
(nautilus_file_get_name):
Fixed an assert I missed.
2000-01-26 Darin Adler <darin@eazel.com>
* libnautilus/nautilus-directory.h:
libnautilus/nautilus-directory.c:
(nautilus_file_get):
(nautilus_file_detach):
(nautilus_directory_finalize):
...
...
libnautilus-extensions/nautilus-directory.c
View file @
47bf5ad6
...
...
@@ -868,7 +868,6 @@ nautilus_file_get_name (NautilusFile *file)
{
g_return_val_if_fail
(
file
!=
NULL
,
NULL
);
g_assert
(
file
->
ref_count
!=
0
);
g_assert
(
file
->
directory
==
NULL
||
NAUTILUS_IS_DIRECTORY
(
file
->
directory
));
g_assert
(
file
->
info
->
name
!=
NULL
);
g_assert
(
file
->
info
->
name
[
0
]
!=
'\0'
);
...
...
libnautilus-private/nautilus-directory.c
View file @
47bf5ad6
...
...
@@ -868,7 +868,6 @@ nautilus_file_get_name (NautilusFile *file)
{
g_return_val_if_fail
(
file
!=
NULL
,
NULL
);
g_assert
(
file
->
ref_count
!=
0
);
g_assert
(
file
->
directory
==
NULL
||
NAUTILUS_IS_DIRECTORY
(
file
->
directory
));
g_assert
(
file
->
info
->
name
!=
NULL
);
g_assert
(
file
->
info
->
name
[
0
]
!=
'\0'
);
...
...
libnautilus/nautilus-directory.c
View file @
47bf5ad6
...
...
@@ -868,7 +868,6 @@ nautilus_file_get_name (NautilusFile *file)
{
g_return_val_if_fail
(
file
!=
NULL
,
NULL
);
g_assert
(
file
->
ref_count
!=
0
);
g_assert
(
file
->
directory
==
NULL
||
NAUTILUS_IS_DIRECTORY
(
file
->
directory
));
g_assert
(
file
->
info
->
name
!=
NULL
);
g_assert
(
file
->
info
->
name
[
0
]
!=
'\0'
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment